diff options
| -rw-r--r-- | pom.xml | 35 |
1 files changed, 6 insertions, 29 deletions
@@ -6,8 +6,8 @@ <groupId>org.zwobble.hobgoblin</groupId> <artifactId>hobgoblin</artifactId> - <version>0.1.0</version> - <packaging>jar</packaging> + <version>0.0.1</version> + <packaging>jlink</packaging> <name>hobgoblin</name> <description>A consistent language for data and queries</description> @@ -86,35 +86,12 @@ <build> <plugins> <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-shade-plugin</artifactId> - <version>3.4.1</version> + <artifactId>maven-jlink-plugin</artifactId> + <version>3.3.0</version> + <extensions>true</extensions> <configuration> - <createDependencyReducedPom>false</createDependencyReducedPom> - <filters> - <filter> - <artifact>*:*</artifact> - <excludes> - <exclude>META-INF/*</exclude> - </excludes> - </filter> - </filters> - <transformers> - <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> - <manifestEntries> - <Main-Class>org.zwobble.hobgoblin.compiler.HobgoblinCli</Main-Class> - </manifestEntries> - </transformer> - </transformers> + <launcher>hobgoblin=org.zwobble.hobgoblin.compiler/org.zwobble.hobgoblin.compiler.HobgoblinCli</launcher> </configuration> - <executions> - <execution> - <phase>package</phase> - <goals> - <goal>shade</goal> - </goals> - </execution> - </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> |
