|
|
@ -18,6 +18,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
|
|
|
<version>3.2.2</version>
|
|
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
|
|
<archive>
|
|
|
|
|
|
|
|
<manifest>
|
|
|
|
|
|
|
|
<mainClass>space.kklochko.simple_jbdd.Main</mainClass>
|
|
|
|
|
|
|
|
<addClasspath>true</addClasspath>
|
|
|
|
|
|
|
|
</manifest>
|
|
|
|
|
|
|
|
</archive>
|
|
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
|
|
|
<version>3.4.1</version>
|
|
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
|
|
<goal>shade</goal>
|
|
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
|
|
</plugin>
|
|
|
|
<!-- Mandatory plugins for using Spock -->
|
|
|
|
<!-- Mandatory plugins for using Spock -->
|
|
|
|
<plugin>
|
|
|
|
<plugin>
|
|
|
|
<!-- The gmavenplus plugin is used to compile Groovy code. To learn more about this plugin,
|
|
|
|
<!-- The gmavenplus plugin is used to compile Groovy code. To learn more about this plugin,
|
|
|
@ -124,16 +150,5 @@
|
|
|
|
<version>2.2</version>
|
|
|
|
<version>2.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependency>
|
|
|
|
<!-- Dependencies used by examples in this project (not required for using Spock) -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
|
|
|
|
<version>2.2.222</version>
|
|
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
|
|
<groupId>org.apache.groovy</groupId>
|
|
|
|
|
|
|
|
<artifactId>groovy-sql</artifactId>
|
|
|
|
|
|
|
|
<version>${groovy.version}</version>
|
|
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|
|
|
|
</project>
|
|
|
|