Imported from dev1.link2tek.net CommEngine.git
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 regels
2.4 KiB

  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>alerttek</groupId>
  4. <artifactId>CommEngine</artifactId>
  5. <version>0.0.2-SNAPSHOT</version>
  6. <properties>
  7. <maven.test.skip>true</maven.test.skip>
  8. </properties>
  9. <scm>
  10. <developerConnection>scm:git:ssh://dev1.link2tek.net/home/alerttekdev/git_hub/CommEngine.git</developerConnection>
  11. <tag>HEAD</tag>
  12. </scm>
  13. <build>
  14. <plugins>
  15. <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
  16. <plugin>
  17. <groupId>org.apache.maven.plugins</groupId>
  18. <artifactId>maven-compiler-plugin</artifactId>
  19. <version>3.8.1</version>
  20. <configuration>
  21. <release>8</release>
  22. </configuration>
  23. </plugin>
  24. <plugin>
  25. <groupId>org.apache.maven.plugins</groupId>
  26. <artifactId>maven-deploy-plugin</artifactId>
  27. <version>2.7</version>
  28. <dependencies>
  29. <dependency><!-- add support for ssh/scp -->
  30. <groupId>org.apache.maven.wagon</groupId>
  31. <artifactId>wagon-ssh</artifactId>
  32. <version>1.0</version>
  33. </dependency>
  34. </dependencies>
  35. </plugin>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-release-plugin</artifactId>
  39. <version>2.5.3</version>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. <dependencies>
  44. <!-- <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId>
  45. <version>1.4</version> </dependency> -->
  46. <dependency>
  47. <groupId>log4j</groupId>
  48. <artifactId>log4j</artifactId>
  49. <version>1.2.17</version>
  50. </dependency>
  51. <!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient -->
  52. <dependency>
  53. <groupId>commons-httpclient</groupId>
  54. <artifactId>commons-httpclient</artifactId>
  55. <version>3.1</version>
  56. </dependency>
  57. <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
  58. <dependency>
  59. <groupId>javax.servlet</groupId>
  60. <artifactId>javax.servlet-api</artifactId>
  61. <version>4.0.1</version>
  62. <scope>provided</scope>
  63. </dependency>
  64. </dependencies>
  65. <distributionManagement>
  66. <repository>
  67. <uniqueVersion>false</uniqueVersion>
  68. <id>alertek_repo</id>
  69. <name>Alertek Repository</name>
  70. <url>scp://dev1.link2tek.net/home/alerttekdev/maven_repo</url>
  71. <layout>default</layout>
  72. </repository>
  73. </distributionManagement>
  74. </project>