Imported from dev1.link2tek.net CommEngine.git
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

95 Zeilen
2.8 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>1.0.14</version>
  6. <properties>
  7. <maven.test.skip>true</maven.test.skip>
  8. </properties>
  9. <scm>
  10. <developerConnection>scm:git:https://git.link2tek.net/ymlam/CommEngine.git</developerConnection>
  11. <tag>1.0.14</tag>
  12. </scm>
  13. <build>
  14. <extensions>
  15. <extension>
  16. <groupId>org.apache.maven.wagon</groupId>
  17. <artifactId>wagon-ssh</artifactId>
  18. <version>3.3.2</version>
  19. </extension>
  20. </extensions>
  21. <plugins>
  22. <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
  23. <plugin>
  24. <groupId>org.apache.maven.plugins</groupId>
  25. <artifactId>maven-compiler-plugin</artifactId>
  26. <version>3.8.1</version>
  27. <configuration>
  28. <release>11</release>
  29. </configuration>
  30. </plugin>
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-deploy-plugin</artifactId>
  34. <version>2.7</version>
  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/org.apache.httpcomponents/httpclient -->
  52. <dependency>
  53. <groupId>org.apache.httpcomponents</groupId>
  54. <artifactId>httpclient</artifactId>
  55. <version>4.5.8</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. <dependency>
  65. <groupId>com.googlecode.json-simple</groupId>
  66. <artifactId>json-simple</artifactId>
  67. <version>1.1.1</version>
  68. </dependency>
  69. </dependencies>
  70. <repositories>
  71. <repository>
  72. <snapshots>
  73. <updatePolicy>always</updatePolicy>
  74. <checksumPolicy>ignore</checksumPolicy>
  75. </snapshots>
  76. <id>vpxrepo</id>
  77. <url>sftp://repo.link2tek.net/home/snake/maven_repo</url>
  78. </repository>
  79. </repositories>
  80. <distributionManagement>
  81. <repository>
  82. <uniqueVersion>false</uniqueVersion>
  83. <id>alertek_repo</id>
  84. <name>Alertek Repository</name>
  85. <url>scp://repo.link2tek.net/home/snake/maven_repo</url>
  86. <layout>default</layout>
  87. </repository>
  88. </distributionManagement>
  89. </project>