ymate-framework-unpack
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.ymate.framework</groupId>
<artifactId>ymate-framework-unpack</artifactId>
<version>2.0.8</version>
</dependency><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">
<parent>
<artifactId>ymate-framework-parent</artifactId>
<groupId>net.ymate.framework</groupId>
<version>6</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>ymate-framework-unpack</artifactId>
<version>2.0.8</version>
<packaging>jar</packaging>
<name>ymate-framework-unpack</name>
<url>http://www.ymate.net/</url>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>**/ymp-*.properties</exclude>
</excludes>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestSections>
<manifestSection>
<name>net/ymate/framework/unpack/</name>
</manifestSection>
</manifestSections>
<manifestEntries>
<Specification-Version>${project.version}</Specification-Version>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Version>${maven.build.timestamp}</Implementation-Version>
<Implementation-Vendor>www.ymate.net</Implementation-Vendor>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.ymate.platform</groupId>
<artifactId>ymate-platform-core</artifactId>
<version>${ymate.platform.version}</version>
</dependency>
</dependencies>
</project>