58 lines
1.8 KiB
XML
58 lines
1.8 KiB
XML
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>br.com.rjconsultores</groupId>
|
|
<artifactId>Auditador</artifactId>
|
|
<version>1.0.0</version>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>nexus-rjconsultores</id>
|
|
<name>nexus-rjconsultores</name>
|
|
<url>http://52.5.53.15:8081/nexus/content/groups/public</url>
|
|
<layout>default</layout>
|
|
<uniqueVersion>false</uniqueVersion>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>nexus-rjconsultores</id>
|
|
<name>nexus-rjconsultores</name>
|
|
<url>http://52.5.53.15/:8081/nexus/content/repositories/snapshots</url>
|
|
<layout>default</layout>
|
|
<uniqueVersion>false</uniqueVersion>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<build>
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
<testSourceDirectory>src/test/java</testSourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>sonar-maven-plugin</artifactId>
|
|
<version>3.2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
<finalName>${project.artifactId}</finalName>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>2.2</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |