0

私は非常に単純なプログラムを持っています。これは、事前に定義された ResultSet を介してデータが入力される JTable を生成するだけで、ide (intelliJ) 内で正常に動作します。sqlite への依存関係は 1 つだけです。

同じテーブルを吐き出すスタンドアロンの実行可能jarをそこから取得しようとしています。

ファット ジャーを検索したときに最も一般的な結果だったので、私は gradle でプロジェクトを行いました。

ガイドはまったく機能しませんでしたが、最終的にここにたどり着きました。

Gradle ファット jar にはライブラリが含まれていません

ターミナルで「gradle uberJar」を実行するとjarが生成されましたが、ダブルクリックしてコマンドラインでjarを実行しても実行されません。

dbtest-1.0-SNAPSHOT-uber.jar にメインのマニフェスト属性なし

これがgradleビルドテキストです:

plugins {
    id "java"
}

version '1.0-SNAPSHOT'

repositories {
    mavenCentral()
}

dependencies {
    testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
    testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
    implementation 'org.xerial:sqlite-jdbc:3.34.0'
}

test {
    useJUnitPlatform()
}

task uberJar(type: Jar) {
    archiveClassifier = 'uber'

    from sourceSets.main.output

    dependsOn configurations.runtimeClasspath
    from {
        configurations.runtimeClasspath.findAll { it.name.endsWith('jar') }.collect { zipTree(it) }
    }
}

その後、mavenで同じプロジェクトを試しましたが、あまり成功しませんでした

IntelliJ を使用してすべての依存関係を持つ jar ファイル (別名 Fat jar) を作成する方法

ファット JAR が機能しない。「メインマニフェスト属性なし」。POMファイルを試しましたが、まだ失敗しています

ここ(および他の場所)からの回答を使用して、コマンドラインで mvn clean package を実行すると、

> [INFO] BUILD FAILURE [INFO]
> ------------------------------------------------------------------------ [INFO] Total time:  1.814 s [INFO] Finished at:
> 2021-06-12T14:35:07-06:00 [INFO]
> ------------------------------------------------------------------------ [ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
> (default-compile) on project mvDB: Fatal error compiling: error:
> invalid target release: 16 -> [Help 1] [ERROR] [ERROR] To see the full
> stack trace of the errors, re-run Maven with the -e switch. [ERROR]
> Re-run Maven using the -X switch to enable full debug logging. [ERROR]
> [ERROR] For more information about the errors and possible solutions,
> please read the following articles: [ERROR] [Help 1]
> http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

intelliJの端末でもコマンドを実行できません。

こちらがポン

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>groupId</groupId>
    <artifactId>mvDB</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
        <maven.compiler.source>16</maven.compiler.source>
        <maven.compiler.target>16</maven.compiler.target>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.xerial</groupId>
            <artifactId>sqlite-jdbc</artifactId>
            <version>3.34.0</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <version>3.2.4</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>shade</goal>
                        </goals>
                        <configuration>
                            <transformers>
                                <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                                    <mainClass>test.Main</mainClass>
                                </transformer>
                            </transformers>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>

確かに、私はこれがうまくいくわけではありません。私は、アイデアに取り組んでいるコードから、実行できるプログラムに移行しようとしているだけです。そして、より大きなプログラムに依存するファット Jar の作成に適用できることを願っています。

4

1 に答える 1