Imported from dev1.link2tek.net CommEngine.git
Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- <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>alerttek</groupId>
- <artifactId>CommEngine</artifactId>
- <version>0.0.1</version>
- <properties>
- <maven.test.skip>true</maven.test.skip>
- </properties>
- <scm>
- <developerConnection>scm:git:ssh://dev1.link2tek.net/home/alerttekdev/git_hub/CommEngine</developerConnection>
- <tag>CommEngine-0.0.1</tag>
- </scm>
-
- <build>
- <plugins>
- <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.1</version>
- <configuration>
- <release>8</release>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <version>2.7</version>
- <dependencies>
- <dependency><!-- add support for ssh/scp -->
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-ssh</artifactId>
- <version>1.0</version>
- </dependency>
- </dependencies>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.5.3</version>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <!-- <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId>
- <version>1.4</version> </dependency> -->
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.17</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient -->
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.1</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>4.0.1</version>
- <scope>provided</scope>
- </dependency>
-
- </dependencies>
-
- <distributionManagement>
- <repository>
- <uniqueVersion>false</uniqueVersion>
- <id>alertek_repo</id>
- <name>Alertek Repository</name>
- <url>scp://dev1.link2tek.net/home/alerttekdev/maven_repo</url>
- <layout>default</layout>
- </repository>
- </distributionManagement>
-
- </project>
|