jd-lib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.hackerwin7</groupId> <artifactId>jd-lib</artifactId> <version>0.1.3.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <repositories> <repository> <id>external-dependencies-repo</id> <url>https://raw.githubusercontent.com/hackerwin7/external-dependencies-repo/master/</url> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </snapshots> </repository> </repositories> <name>hackerwin7</name> <description>components for jd relative projects</description> <url>https://github.com/hackerwin7/jd-lib</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>hackerwin7</name> <email>hackerswin7@gmail.com</email> </developer> </developers> <scm> <url>git@github.com:hackerwin7/jd-lib.git</url> <connection>scm:git:git@github.com:hackerwin7/jd-lib.git</connection> <developerConnection>scm:git:git@github.com:hackerwin7/jd-lib.git</developerConnection> </scm> <groupId>com.github.hackerwin7</groupId> <artifactId>jd-lib</artifactId> <version>0.1.3.1</version> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.4</version> </dependency> <dependency> <groupId>com.github.hackerwin7</groupId> <artifactId>jlib-utils</artifactId> <version>0.1.1</version> </dependency> <dependency> <groupId>com.jd.bdp</groupId> <artifactId>magpie-monitor-commons</artifactId> <version>0.0.5-SNAPSHOT</version> </dependency> <dependency> <groupId>com.jd.bdp</groupId> <artifactId>magpie-framework</artifactId> <version>1.2.0</version> </dependency> <dependency> <groupId>com.jd.bdp</groupId> <artifactId>magpie-monitor-constants</artifactId> <version>0.0.5-SNAPSHOT</version> </dependency> <dependency> <groupId>com.jd.bdp.jdw</groupId> <artifactId>serializer_2.10</artifactId> <version>0.2-SNAPSHOT</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.5</version> <configuration> <archive> <addMavenDescriptor>true</addMavenDescriptor> </archive> <excludes> <exclude>**/log4j.properties</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> <configuration> <descriptors> <descriptor>src/main/assembly/assembly-magpie.xml</descriptor> </descriptors> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <configuration> <source>1.7</source> <target>1.7</target> <encoding>utf-8</encoding> </configuration> </plugin> <!-- for deploy to central repo--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <skip>false</skip> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>oss</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>oss</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>