| @@ -1,4 +1,6 @@ | |||||
| <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"> | |||||
| <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> | <modelVersion>4.0.0</modelVersion> | ||||
| <groupId>alerttek</groupId> | <groupId>alerttek</groupId> | ||||
| <artifactId>CommEngine</artifactId> | <artifactId>CommEngine</artifactId> | ||||
| @@ -12,6 +14,13 @@ | |||||
| </scm> | </scm> | ||||
| <build> | <build> | ||||
| <extensions> | |||||
| <extension> | |||||
| <groupId>org.apache.maven.wagon</groupId> | |||||
| <artifactId>wagon-ssh</artifactId> | |||||
| <version>3.3.2</version> | |||||
| </extension> | |||||
| </extensions> | |||||
| <plugins> | <plugins> | ||||
| <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin --> | <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin --> | ||||
| <plugin> | <plugin> | ||||
| @@ -26,13 +35,6 @@ | |||||
| <groupId>org.apache.maven.plugins</groupId> | <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-deploy-plugin</artifactId> | <artifactId>maven-deploy-plugin</artifactId> | ||||
| <version>2.7</version> | <version>2.7</version> | ||||
| <dependencies> | |||||
| <dependency><!-- add support for ssh/scp --> | |||||
| <groupId>org.apache.maven.wagon</groupId> | |||||
| <artifactId>wagon-ssh</artifactId> | |||||
| <version>3.3.2</version> | |||||
| </dependency> | |||||
| </dependencies> | |||||
| </plugin> | </plugin> | ||||
| <plugin> | <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | <groupId>org.apache.maven.plugins</groupId> | ||||
| @@ -63,9 +65,17 @@ | |||||
| <version>4.0.1</version> | <version>4.0.1</version> | ||||
| <scope>provided</scope> | <scope>provided</scope> | ||||
| </dependency> | </dependency> | ||||
| </dependencies> | </dependencies> | ||||
| <repositories> | |||||
| <repository> | |||||
| <snapshots> | |||||
| <updatePolicy>always</updatePolicy> | |||||
| <checksumPolicy>ignore</checksumPolicy> | |||||
| </snapshots> | |||||
| <id>vpxrepo</id> | |||||
| <url>sftp://dev1.link2tek.net/home/alerttekdev/maven_repo</url> | |||||
| </repository> | |||||
| </repositories> | |||||
| <distributionManagement> | <distributionManagement> | ||||
| <repository> | <repository> | ||||
| <uniqueVersion>false</uniqueVersion> | <uniqueVersion>false</uniqueVersion> | ||||