Imported from dev1.link2tek.net CommEngine.git
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

89 行
2.7 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.3-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. <extensions>
  17. <extension>
  18. <groupId>org.apache.maven.wagon</groupId>
  19. <artifactId>wagon-ssh</artifactId>
  20. <version>3.3.2</version>
  21. </extension>
  22. </extensions>
  23. <plugins>
  24. <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
  25. <plugin>
  26. <groupId>org.apache.maven.plugins</groupId>
  27. <artifactId>maven-compiler-plugin</artifactId>
  28. <version>3.8.1</version>
  29. <configuration>
  30. <release>8</release>
  31. </configuration>
  32. </plugin>
  33. <plugin>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-deploy-plugin</artifactId>
  36. <version>2.7</version>
  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/org.apache.httpcomponents/httpclient -->
  54. <dependency>
  55. <groupId>org.apache.httpcomponents</groupId>
  56. <artifactId>httpclient</artifactId>
  57. <version>4.5.8</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. <repositories>
  68. <repository>
  69. <snapshots>
  70. <updatePolicy>always</updatePolicy>
  71. <checksumPolicy>ignore</checksumPolicy>
  72. </snapshots>
  73. <id>vpxrepo</id>
  74. <url>sftp://dev1.link2tek.net/home/alerttekdev/maven_repo</url>
  75. </repository>
  76. </repositories>
  77. <distributionManagement>
  78. <repository>
  79. <uniqueVersion>false</uniqueVersion>
  80. <id>alertek_repo</id>
  81. <name>Alertek Repository</name>
  82. <url>scp://dev1.link2tek.net/home/alerttekdev/maven_repo</url>
  83. <layout>default</layout>
  84. </repository>
  85. </distributionManagement>
  86. </project>