|
@@ -5,12 +5,6 @@
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
- <parent>
|
|
|
- <groupId>io.jooby</groupId>
|
|
|
- <artifactId>jooby-project</artifactId>
|
|
|
- <version>2.5.1</version>
|
|
|
- </parent>
|
|
|
-
|
|
|
<artifactId>kooby</artifactId>
|
|
|
<groupId>com.techempower</groupId>
|
|
|
<version>2.0</version>
|
|
@@ -18,7 +12,7 @@
|
|
|
<name>kooby: jooby + kotlin</name>
|
|
|
|
|
|
<properties>
|
|
|
- <jooby.version>2.5.1</jooby.version>
|
|
|
+ <jooby.version>2.6.0</jooby.version>
|
|
|
<postgresql.version>42.2.5</postgresql.version>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
@@ -170,7 +164,39 @@
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>uber-jar</id>
|
|
|
+ <phase>package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>shade</goal>
|
|
|
+ </goals>
|
|
|
+ <configuration>
|
|
|
+ <createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
+ <transformers>
|
|
|
+ <transformer
|
|
|
+ implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
|
|
|
+ <transformer
|
|
|
+ implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
|
+ <mainClass>${application.class}</mainClass>
|
|
|
+ </transformer>
|
|
|
+ </transformers>
|
|
|
+ </configuration>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
+
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.jooby</groupId>
|
|
|
+ <artifactId>jooby-bom</artifactId>
|
|
|
+ <version>${jooby.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
</project>
|