| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.infiniteautomation</groupId>
- <artifactId>modbus4j</artifactId>
- <version>3.1.1-SNAPSHOT</version>
- <name>Modbus4j Library</name>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <build>
- <sourceDirectory>src</sourceDirectory>
- <testSourceDirectory>src_test</testSourceDirectory>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.7.0</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>3.0.1</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <version>2.8.1</version>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.sonatype.plugins</groupId>
- <artifactId>nexus-staging-maven-plugin</artifactId>
- <version>1.5.1</version>
- <executions>
- <execution>
- <id>default-deploy</id>
- <phase>deploy</phase>
- <goals>
- <goal>deploy</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <serverId>ias-releases</serverId>
- <nexusUrl>https://maven.mangoautomation.net/</nexusUrl>
- <skipStaging>true</skipStaging>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.5.3</version>
- <dependencies>
- <dependency>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-scm-plugin</artifactId>
- <version>1.9.5</version>
- </dependency>
- </dependencies>
- <configuration>
- <tagNameFormat>v@{project.version}</tagNameFormat>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>3.7</version>
- </dependency>
- <dependency>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <version>1.1.1</version>
- </dependency>
- </dependencies>
- <issueManagement>
- <url>https://github.com/infiniteautomation/modbus4j/issues</url>
- <system>github</system>
- </issueManagement>
- <scm>
- <url>https://github.com/infiniteautomation/modbus4j</url>
- <connection>scm:git:https://github.com/infiniteautomation/modbus4j.git</connection>
- <developerConnection>scm:git:[push=]https://github.com/infiniteautomation/modbus4j.git[fetch=]https://github.com/infiniteautomation/modbus4j.git</developerConnection>
- <tag>HEAD</tag>
- </scm>
- <distributionManagement>
- <snapshotRepository>
- <id>ias-snapshots</id>
- <url>https://maven.mangoautomation.net/repository/ias-snapshot/</url>
- </snapshotRepository>
- <repository>
- <id>ias-releases</id>
- <url>https://maven.mangoautomation.net/repository/ias-release/</url>
- </repository>
- </distributionManagement>
- </project>
|