pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.infiniteautomation</groupId>
  4. <artifactId>modbus4j</artifactId>
  5. <version>3.1.1-SNAPSHOT</version>
  6. <name>Modbus4j Library</name>
  7. <properties>
  8. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  9. </properties>
  10. <build>
  11. <sourceDirectory>src</sourceDirectory>
  12. <testSourceDirectory>src_test</testSourceDirectory>
  13. <plugins>
  14. <plugin>
  15. <artifactId>maven-compiler-plugin</artifactId>
  16. <version>3.7.0</version>
  17. <configuration>
  18. <source>1.8</source>
  19. <target>1.8</target>
  20. </configuration>
  21. </plugin>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-source-plugin</artifactId>
  25. <version>3.0.1</version>
  26. <executions>
  27. <execution>
  28. <id>attach-sources</id>
  29. <goals>
  30. <goal>jar</goal>
  31. </goals>
  32. </execution>
  33. </executions>
  34. </plugin>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-deploy-plugin</artifactId>
  38. <version>2.8.1</version>
  39. <configuration>
  40. <skip>true</skip>
  41. </configuration>
  42. </plugin>
  43. <plugin>
  44. <groupId>org.sonatype.plugins</groupId>
  45. <artifactId>nexus-staging-maven-plugin</artifactId>
  46. <version>1.5.1</version>
  47. <executions>
  48. <execution>
  49. <id>default-deploy</id>
  50. <phase>deploy</phase>
  51. <goals>
  52. <goal>deploy</goal>
  53. </goals>
  54. </execution>
  55. </executions>
  56. <configuration>
  57. <serverId>ias-releases</serverId>
  58. <nexusUrl>https://maven.mangoautomation.net/</nexusUrl>
  59. <skipStaging>true</skipStaging>
  60. </configuration>
  61. </plugin>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-release-plugin</artifactId>
  65. <version>2.5.3</version>
  66. <dependencies>
  67. <dependency>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-scm-plugin</artifactId>
  70. <version>1.9.5</version>
  71. </dependency>
  72. </dependencies>
  73. <configuration>
  74. <tagNameFormat>v@{project.version}</tagNameFormat>
  75. </configuration>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. <dependencies>
  80. <dependency>
  81. <groupId>org.apache.commons</groupId>
  82. <artifactId>commons-lang3</artifactId>
  83. <version>3.7</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>commons-logging</groupId>
  87. <artifactId>commons-logging</artifactId>
  88. <version>1.1.1</version>
  89. </dependency>
  90. </dependencies>
  91. <issueManagement>
  92. <url>https://github.com/infiniteautomation/modbus4j/issues</url>
  93. <system>github</system>
  94. </issueManagement>
  95. <scm>
  96. <url>https://github.com/infiniteautomation/modbus4j</url>
  97. <connection>scm:git:https://github.com/infiniteautomation/modbus4j.git</connection>
  98. <developerConnection>scm:git:[push=]https://github.com/infiniteautomation/modbus4j.git[fetch=]https://github.com/infiniteautomation/modbus4j.git</developerConnection>
  99. <tag>HEAD</tag>
  100. </scm>
  101. <distributionManagement>
  102. <snapshotRepository>
  103. <id>ias-snapshots</id>
  104. <url>https://maven.mangoautomation.net/repository/ias-snapshot/</url>
  105. </snapshotRepository>
  106. <repository>
  107. <id>ias-releases</id>
  108. <url>https://maven.mangoautomation.net/repository/ias-release/</url>
  109. </repository>
  110. </distributionManagement>
  111. </project>