| 组织ID: |
com.creditdatamw.labs |
| 项目ID: |
zerocell-example |
| 版本: |
0.3.0 |
| 最后修改时间: |
2019-12-01 13:10:59 |
| 包类型: |
jar |
| 大小: |
8.02KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.creditdatamw.labs</groupId>
<artifactId>zerocell-example</artifactId>
<version>0.3.0</version>
</dependency>
|
| Gradle引入代码: |
com.creditdatamw.labs:zerocell-example:0.3.0
|
| 下载Jar包: |
|
| POM文件内容: |
<?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">
<parent>
<artifactId>zerocell-parent</artifactId>
<groupId>com.creditdatamw.labs</groupId>
<version>0.3.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>zerocell-example</artifactId>
<dependencies>
<dependency>
<groupId>com.creditdatamw.labs</groupId>
<artifactId>zerocell-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.creditdatamw.labs</groupId>
<artifactId>zerocell-processor</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>java</executable>
<arguments>
<argument>-classpath</argument>
<classpath/>
<argument>com.creditdatamw.zerocell.example.ExampleApplication</argument>
</arguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.creditdatamw.zerocell.example.ExampleApplication.class
com.creditdatamw.zerocell.example.IdPrefixingConverter.class
META-INF/maven/com.creditdatamw.labs/zerocell-example/pom.xml
META-INF/maven/com.creditdatamw.labs/zerocell-example/pom.properties
com.creditdatamw.zerocell.example.Person.class
com.creditdatamw.zerocell.example.PersonExcelReader.class
|
| 依赖Jar: |
zerocell-core-${project.version}.jar
/com.creditdatamw.labs/zerocell-core/${project.version}
查看zerocell-core所有版本文件
zerocell-processor-${project.version}.jar
/com.creditdatamw.labs/zerocell-processor/${project.version}
查看zerocell-processor所有版本文件
|