jadelibs-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.jade-dungeon</groupId>
<artifactId>jadelibs-java</artifactId>
<version>1.0.14</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.jade-dungeon</groupId>
<artifactId>jadelibs-java</artifactId>
<version>1.0.14</version>
<packaging>pom</packaging>
<name>java lib base</name>
<description>My Persional Java Lib configure</description>
<url>https://github.com/Jade-Shan/jadelibs-java</url>
<licenses>
<license>
<name>GNU General Public License v3 (GPL-3)</name>
<url>https://tldrlegal.com/license/gnu-general-public-license-v3-(gpl-3)#fulltext</url>
</license>
</licenses>
<developers>
<developer>
<name>Qiwei Shan</name>
<email>evokeralucard@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:Jade-Shan/Jade-Java-Libs.git</connection>
<developerConnection>scm:git:git@github.com:Jade-Shan/Jade-Java-Libs.git</developerConnection>
<url>git@github.com:Jade-Shan/Jade-Java-Libs.git</url>
<tag>jadelibs-java-1.0.7</tag>
</scm>
<properties>
<charset.encoding>UTF-8</charset.encoding>
<java.version>1.8</java.version>
<!-- plugins -->
<jacoco-maven-plugin.version>0.7.5.201505241946</jacoco-maven-plugin.version>
<maven-surefire-plugin.version>2.16</maven-surefire-plugin.version>
<maven-resources-plugin.version>2.6</maven-resources-plugin.version>
<cobertura-maven-plugin.version>2.6</cobertura-maven-plugin.version>
<maven-compiler-plugin.version>3.0</maven-compiler-plugin.version>
<!-- test -->
<junit.version>4.10</junit.version>
<junit-interface.version>0.10</junit-interface.version>
<hamcrest-all.version>1.3</hamcrest-all.version>
<dd-plist.version>1.21</dd-plist.version>
<greenmail.version>1.5.9</greenmail.version>
<!-- javax -->
<jsr250-api.version>1.0</jsr250-api.version>
<!-- jsp/servlet -->
<springframework.version>4.3.21.RELEASE</springframework.version>
<servlet-api.version>3.1.0</servlet-api.version>
<jsp-api.version>2.3.1</jsp-api.version>
<jstl.version>1.2.5</jstl.version>
<jett-maven-plg.version>9.3.0.M2</jett-maven-plg.version>
<cargo-maven2.version>1.4.8</cargo-maven2.version>
<!-- data -->
<hikaricp.version>3.2.0</hikaricp.version>
<sqlite-jdbc.version>3.23.1</sqlite-jdbc.version>
<xmemcached.version>1.4.1</xmemcached.version>
<mongo-java-driver.version>2.12.4</mongo-java-driver.version>
<!--
<mysql-connector-java.version>5.1.13</mysql-connector-java.version>
-->
<mysql-connector-java.version>8.0.19</mysql-connector-java.version>
<hibernate.version>3.6.1.Final</hibernate.version>
<!-- log -->
<logback.version>1.0.13</logback.version>
<log4j.version>1.2.17</log4j.version>
<slf4j.version>1.7.25</slf4j.version>
<javamelody.version>1.75.0</javamelody.version>
<!-- parser -->
<jsoup.version>1.11.3</jsoup.version>
<json.version>20140107</json.version>
<jackson-mapper-asl.version>1.9.13</jackson-mapper-asl.version>
<!--
<jackson-databind.version>[2.9.8,)</jackson-databind.version>
-->
<jackson-databind.version>2.9.10.4</jackson-databind.version>
<fastjson.version>1.2.58</fastjson.version>
<!-- 3rd libs -->
<rhino.version>1.7R4</rhino.version>
<javadiffutils.version>1.2.1</javadiffutils.version>
<ezvcard.version>0.9.9</ezvcard.version>
<kaptcha.version>2.3.2</kaptcha.version>
<commons-lang.version>2.6</commons-lang.version>
<commons-lang3.version>3.8</commons-lang3.version>
<commons-io.version>2.6</commons-io.version>
<!--
<commons-fileupload.version>[1.3.3,)</commons-fileupload.version>
-->
<commons-fileupload.version>1.3.3</commons-fileupload.version>
<commons-dbcp.version>1.4</commons-dbcp.version>
<jopt-simple.version>4.9</jopt-simple.version>
<javassist.version>3.4.GA</javassist.version>
<httpclient.version>4.3.6</httpclient.version>
<javamail.version>1.4.7</javamail.version>
<commonscli.version>1.3</commonscli.version>
<ddnsjava.version>2.1.6</ddnsjava.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
<version>${jsr250-api.version}</version>
</dependency>
<dependency> <!-- nop log -->
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>net.bull.javamelody</groupId>
<artifactId>javamelody-core</artifactId>
<version>${javamelody.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.kaptcha</groupId>
<artifactId>kaptcha</artifactId>
<version>${kaptcha.version}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons-lang.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>${commons-fileupload.version}</version>
</dependency>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>${commons-dbcp.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-databind.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>${jackson-mapper-asl.version}</version>
</dependency>
<dependency>
<groupId>net.sf.jopt-simple</groupId>
<artifactId>jopt-simple</artifactId>
<version>${jopt-simple.version}</version>
</dependency>
<dependency>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
<version>${javassist.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>${springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
<version>${springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>${springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>${springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${springframework.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpclient.version}</version>
</dependency>
<dependency>
<groupId>com.googlecode.xmemcached</groupId>
<artifactId>xmemcached</artifactId>
<version>${xmemcached.version}</version>
</dependency>
<dependency><!-- JDBC Connection Pool -->
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>${hikaricp.version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql-connector-java.version}</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>${mongo-java-driver.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servlet-api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>javax.servlet.jsp-api</artifactId>
<version>${jsp-api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.taglibs</groupId>
<artifactId>taglibs-standard-spec</artifactId>
<version>${jstl.version}</version>
</dependency>
<dependency>
<groupId>org.apache.taglibs</groupId>
<artifactId>taglibs-standard-impl</artifactId>
<version>${jstl.version}</version>
</dependency>
<dependency>
<groupId>com.googlecode.ez-vcard</groupId>
<artifactId>ez-vcard</artifactId>
<version>${ezvcard.version}</version>
</dependency>
<!-- <dependency> <groupId>org.opencv</groupId> <artifactId>opencv</artifactId>
<version>${opencv.version}</version> <systemPath>${opencv.path}</systemPath>
<scope>system</scope> </dependency> -->
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>${jsoup.version}</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${json.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>org.mozilla</groupId>
<artifactId>rhino</artifactId>
<version>${rhino.version}</version>
</dependency>
<dependency>
<groupId>com.googlecode.java-diff-utils</groupId>
<artifactId>diffutils</artifactId>
<version>${javadiffutils.version}</version>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>${sqlite-jdbc.version}</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>${javamail.version}</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>${commonscli.version}</version>
</dependency>
<dependency>
<groupId>dnsjava</groupId>
<artifactId>dnsjava</artifactId>
<version>${ddnsjava.version}</version>
</dependency>
<!-- for test scope -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.novocode</groupId>
<artifactId>junit-interface</artifactId>
<version>${junit-interface.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${hamcrest-all.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.googlecode.plist</groupId>
<artifactId>dd-plist</artifactId>
<version>${dd-plist.version}</version>
</dependency>
<dependency>
<groupId>com.icegreen</groupId>
<artifactId>greenmail</artifactId>
<version>${greenmail.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jett-maven-plg.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>${cargo-maven2.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${cobertura-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- =========================== -->
<!-- copy resources -->
<!-- =========================== -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>${charset.encoding}</encoding>
</configuration>
</plugin>
<!-- =========================== -->
<!-- compile java -->
<!-- =========================== -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${charset.encoding}</encoding>
</configuration>
<executions>
<execution><!-- do java "compile" when "compile" -->
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- =========================== -->
<!-- surefire test -->
<!-- =========================== -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Test.java</include>
<include>**/*Spec.java</include>
<include>**/UnitTestSuite.java</include>
</includes>
<excludes>
<exclude>**/Abstract*.java</exclude>
<exclude>**/*IntegrationTest.java</exclude>
<exclude>**/*Tests.java</exclude>
</excludes>
</configuration>
</plugin>
<!-- =========================== -->
<!-- jacoco plugin -->
<!-- =========================== -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<!-- =========================== -->
<!-- different env -->
<!-- =========================== -->
<profiles>
<profile>
<id>dev</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<profiles.scope.compile>compile</profiles.scope.compile>
<profiles.scope.runtime>runtime</profiles.scope.runtime>
</properties>
</profile>
<profile>
<id>dpl</id>
<properties>
<profiles.scope.compile>provided</profiles.scope.compile>
<profiles.scope.runtime>provided</profiles.scope.runtime>
</properties>
</profile>
<profile>
<id>prd</id>
<properties>
<profiles.scope.compile>compile</profiles.scope.compile>
<profiles.scope.runtime>runtime</profiles.scope.runtime>
</properties>
</profile>
<profile>
<id>rls</id>
<properties>
<profiles.scope.compile>provided</profiles.scope.compile>
<profiles.scope.runtime>provided</profiles.scope.runtime>
</properties>
<build>
<plugins>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- GPG -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>C97AEB0C</keyname>
<passphraseServerId>C97AEB0C</passphraseServerId>
</configuration>
</execution>
</executions>
</plugin>
<!-- sonatype maven center repo -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<!-- -->
<configuration>
<serverId>oss</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<!-- center remo -->
<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>
</profile>
</profiles>
<!-- =========================== -->
<!-- reporting -->
<!-- =========================== -->
<reporting>
<outputDirectory>target/site</outputDirectory>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
</configuration>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<snapshotRepository>
<id>jade-dungeon-snapshots</id>
<name>Jade-Dungeon Repo SNAPSHOTS</name>
<url>http://nexus.jade-dungeon.net/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>jade-dungeon-releases</id>
<name>Jade-Dungeon Repo Release</name>
<url>http://nexus.jade-dungeon.net/nexus/content/repositories/releases/</url>
</repository>
</distributionManagement>
</project>