Skip to content

Commit

Permalink
#11 - Add TEAM Engine version, depencency and related configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
dstenger committed Oct 18, 2024
1 parent 8c43ef1 commit cb5ca36
Showing 1 changed file with 37 additions and 2 deletions.
39 changes: 37 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,21 @@
</developers>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ssZ</maven.build.timestamp.format>
<teamengine.version>6.0.0-RC1</teamengine.version>
<jackson.version>2.18.0</jackson.version>
<jersey.version>3.1.8</jersey.version>
<soapui.test.fail.ignore>false</soapui.test.fail.ignore>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ssZ</maven.build.timestamp.format>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<artifactId>teamengine-spi</artifactId>
<groupId>org.opengis.cite.teamengine</groupId>
<version>${teamengine.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
Expand Down Expand Up @@ -280,6 +287,7 @@
<configuration>
<outputFolder>${project.build.directory}/soapui</outputFolder>
<junitReport>true</junitReport>
<testFailIgnore>${soapui.test.fail.ignore}</testFailIgnore>
</configuration>
</plugin>
<plugin>
Expand All @@ -292,6 +300,9 @@
<name>ogccite/${project.artifactId}</name>
<build>
<dockerFileDir>${project.basedir}/src/docker</dockerFileDir>
<tags>
<tag>${project.version}-teamengine-${teamengine.version}</tag>
</tags>
<assembly>
<inline>
<fileSets>
Expand All @@ -315,6 +326,30 @@
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.opengis.cite.teamengine</groupId>
<artifactId>teamengine-web</artifactId>
<version>${teamengine.version}</version>
<type>war</type>
</artifactItem>
<artifactItem>
<groupId>org.opengis.cite.teamengine</groupId>
<artifactId>teamengine-web</artifactId>
<version>${teamengine.version}</version>
<classifier>common-libs</classifier>
<type>zip</type>
</artifactItem>
<artifactItem>
<groupId>org.opengis.cite.teamengine</groupId>
<artifactId>teamengine-console</artifactId>
<version>${teamengine.version}</version>
<classifier>base</classifier>
<type>zip</type>
</artifactItem>
</artifactItems>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
Expand Down

0 comments on commit cb5ca36

Please sign in to comment.