Imported from dev1.link2tek.net CommEngine.git
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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