deploy no nexus
parent
f6cd3abb3d
commit
1b824eaea5
39
pom.xml
39
pom.xml
|
@ -7,6 +7,23 @@
|
|||
<artifactId>GeneradorBoletosCNAB</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<name>GeneradorBoletosCNAB</name>
|
||||
|
||||
<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</sourceDirectory>
|
||||
|
@ -18,16 +35,34 @@
|
|||
</excludes>
|
||||
</resource>
|
||||
</resources>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.8.2</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<configuration>
|
||||
<source>1.8</source>
|
||||
<target>1.8</target>
|
||||
<source>11</source>
|
||||
<target>11</target>
|
||||
<encoding>ISO-8859-1</encoding>
|
||||
</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>
|
||||
|
|
Loading…
Reference in New Issue