| 组织ID: |
com.weicoder |
| 项目ID: |
core |
| 版本: |
2.3.1 |
| 最后修改时间: |
2020-04-23 00:28:35 |
| 包类型: |
jar |
| 标题: |
weicoder |
| 描述: |
java core tools |
| 相关URL: |
https://github.com/wdcode/weicoder |
| 大小: |
26.95KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.weicoder</groupId>
<artifactId>core</artifactId>
<version>2.3.1</version>
</dependency>
|
| Gradle引入代码: |
com.weicoder:core:2.3.1
|
| 下载Jar包: |
|
| POM文件内容: |
<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.weicoder</groupId>
<artifactId>core</artifactId>
<packaging>jar</packaging>
<version>2.3.1</version>
<name>weicoder</name>
<description>java core tools</description>
<url>https://github.com/wdcode/weicoder</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>wdcode</name>
<email>wdcode@qq.com</email>
</developer>
</developers>
<scm>
<connection>scm:git@github.com:wdcode/weicoder.git</connection>
<developerConnection>scm:git@github.com:wdcode/weicoder.git</developerConnection>
<url>git@github.com:wdcode/weicoder.git</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.weicoder</groupId>
<artifactId>common</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.10.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.46</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
<version>2.3.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.5.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.9</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore-nio</artifactId>
<version>4.4.9</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient</artifactId>
<version>4.1.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom2</artifactId>
<version>2.0.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.17</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.17</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.10-java7</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-email</artifactId>
<version>1.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.5.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<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>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<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>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.weicoder.core.json.JsonEngine.class
com.weicoder.core.http.HttpAsyncClient$2.class
com.weicoder.core.http.HttpUpload$1.class
com.weicoder.core.http.HttpAsyncClient$1.class
com.weicoder.core.http.HttpAsyncClient$Callback.class
com.weicoder.core.http.HttpAsyncClient.class
com.weicoder.core.http.HttpClient.class
com.weicoder.core.http.HttpUpload.class
com.weicoder.core.log.Log4j2.class
com.weicoder.core.quartz.Trigger.class
com.weicoder.core.quartz.Jobs.class
com.weicoder.core.quartz.Job.class
com.weicoder.core.quartz.Quartzs.class
com.weicoder.core.protobuf.ProtobufEngine.class
com.weicoder.core.protobuf.Protobuf.class
META-INF/maven/com.weicoder/core/pom.xml
META-INF/maven/com.weicoder/core/pom.properties
|
| 依赖Jar: |
common-2.3.1.jar
/com.weicoder/common/2.3.1
查看common所有版本文件
log4j-api-2.10.0.jar
/org.apache.logging.log4j/log4j-api/2.10.0
查看log4j-api所有版本文件
fastjson-1.2.46.jar
/com.alibaba/fastjson/1.2.46
查看fastjson所有版本文件
quartz-2.3.0.jar
/org.quartz-scheduler/quartz/2.3.0
查看quartz所有版本文件
httpclient-4.5.5.jar
/org.apache.httpcomponents/httpclient/4.5.5
查看httpclient所有版本文件
httpmime-4.5.5.jar
/org.apache.httpcomponents/httpmime/4.5.5
查看httpmime所有版本文件
httpcore-4.4.9.jar
/org.apache.httpcomponents/httpcore/4.4.9
查看httpcore所有版本文件
httpcore-nio-4.4.9.jar
/org.apache.httpcomponents/httpcore-nio/4.4.9
查看httpcore-nio所有版本文件
httpasyncclient-4.1.3.jar
/org.apache.httpcomponents/httpasyncclient/4.1.3
查看httpasyncclient所有版本文件
jdom2-2.0.6.jar
/org.jdom/jdom2/2.0.6
查看jdom2所有版本文件
poi-3.17.jar
/org.apache.poi/poi/3.17
查看poi所有版本文件
poi-ooxml-3.17.jar
/org.apache.poi/poi-ooxml/3.17
查看poi-ooxml所有版本文件
xstream-1.4.10-java7.jar
/com.thoughtworks.xstream/xstream/1.4.10-java7
查看xstream所有版本文件
commons-email-1.5.jar
/org.apache.commons/commons-email/1.5
查看commons-email所有版本文件
protobuf-java-3.5.1.jar
/com.google.protobuf/protobuf-java/3.5.1
查看protobuf-java所有版本文件
|