Imported from dev1.link2tek.net CommEngine.git
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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