Imported from dev1.link2tek.net CommEngine.git
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

81 righe
2.4 KiB

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