|
@@ -1,70 +1,61 @@
|
|
|
-<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>
|
|
|
-
|
|
|
- <organization>
|
|
|
- <name>MClarkDev.com</name>
|
|
|
- <url>https://tools.mclarkdev.com/tools</url>
|
|
|
- </organization>
|
|
|
-
|
|
|
- <groupId>com.mclarkdev.tools</groupId>
|
|
|
- <artifactId>libmetrics</artifactId>
|
|
|
- <version>PRERELEASE</version>
|
|
|
- <packaging>jar</packaging>
|
|
|
-
|
|
|
- <name>libmetrics</name>
|
|
|
- <url>https://www.mclarkdev.com/tools/libmetrics</url>
|
|
|
- <description>An generic metrics cache for collecting various system counters.</description>
|
|
|
-
|
|
|
- <scm>
|
|
|
- <url>https://git.mclarkdev.com/MClarkDev.com--Public/LibMetrics.git</url>
|
|
|
- </scm>
|
|
|
-
|
|
|
- <properties>
|
|
|
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
- <maven.compiler.target>1.8</maven.compiler.target>
|
|
|
- <maven.compiler.source>1.8</maven.compiler.source>
|
|
|
- </properties>
|
|
|
-
|
|
|
- <build>
|
|
|
- <sourceDirectory>src/main/java</sourceDirectory>
|
|
|
- <plugins>
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-source-plugin</artifactId>
|
|
|
- <version>3.1.0</version>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <id>attach-sources</id>
|
|
|
- <goals>
|
|
|
- <goal>jar</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-javadoc-plugin</artifactId>
|
|
|
- <version>3.1.1</version>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <id>attach-javadocs</id>
|
|
|
- <goals>
|
|
|
- <goal>jar</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
- </plugin>
|
|
|
- </plugins>
|
|
|
- </build>
|
|
|
-
|
|
|
- <dependencies>
|
|
|
- <dependency>
|
|
|
- <groupId>org.json</groupId>
|
|
|
- <artifactId>json</artifactId>
|
|
|
- <version>20160212</version>
|
|
|
- <scope>compile</scope>
|
|
|
- </dependency>
|
|
|
- </dependencies>
|
|
|
-</project>
|
|
|
+<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>
|
|
|
+
|
|
|
+ <organization>
|
|
|
+ <name>MClarkDev.com</name>
|
|
|
+ <url>https://tools.mclarkdev.com/tools</url>
|
|
|
+ </organization>
|
|
|
+
|
|
|
+ <groupId>com.mclarkdev.tools</groupId>
|
|
|
+ <artifactId>libsockets</artifactId>
|
|
|
+ <version>PRERELEASE</version>
|
|
|
+ <packaging>jar</packaging>
|
|
|
+
|
|
|
+ <name>libsockets</name>
|
|
|
+ <url>https://www.mclarkdev.com/tools/libsockets</url>
|
|
|
+ <description>A generic socket manager.</description>
|
|
|
+
|
|
|
+ <scm>
|
|
|
+ <url>https://git.mclarkdev.com/MClarkDev.com--Public/libsockets.git</url>
|
|
|
+ </scm>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <maven.compiler.target>1.8</maven.compiler.target>
|
|
|
+ <maven.compiler.source>1.8</maven.compiler.source>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <sourceDirectory>src/main/java</sourceDirectory>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-source-plugin</artifactId>
|
|
|
+ <version>3.1.0</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>attach-sources</id>
|
|
|
+ <goals>
|
|
|
+ <goal>jar</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-javadoc-plugin</artifactId>
|
|
|
+ <version>3.1.1</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>attach-javadocs</id>
|
|
|
+ <goals>
|
|
|
+ <goal>jar</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+</project>
|