You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>cokr.xit.interfaces</groupId>
|
|
|
|
<artifactId>xit-lvis-rest</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>lvis-rest Maven Webapp</name>
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
|
|
|
<java.version>17</java.version>
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cokr.xit.interfaces</groupId>
|
|
|
|
<artifactId>xit-lvis</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<finalName>xit-lvis-rest</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>3.3.2</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<!-- Nexus deploy -->
|
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>maven-snapshot</id>
|
|
|
|
<url>http://xit.xit-nexus.com:8081/repository/maven-snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
|
|
|
|
<repository>
|
|
|
|
<id>maven-release</id>
|
|
|
|
<url>http://xit.xit-nexus.com:8081/repository/maven-releases/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
<!-- Nexus deploy -->
|
|
|
|
|
|
|
|
</project>
|