yc.frame.web.plugin.render
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.ycframe</groupId>
<artifactId>yc.frame.web.plugin.render</artifactId>
<version>0.0.1</version>
</dependency><?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.ycframe</groupId>
<artifactId>yc.frame.web.plugin.render</artifactId>
<version>0.0.1</version>
<name>yc.frame.web.plugin.render</name>
<description>com.ycframe develop frame</description>
<url>https://github.com/jlzhiyuan/YCFrame</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>Terry</name>
<email>ccterry@163.com</email>
</developer>
</developers>
<scm>
<connection>scm:git@github.com:jlzhiyuan/YCFrame.git</connection>
<developerConnection>scm:git@github.com:jlzhiyuan/YCFrame.git</developerConnection>
<url>git@github.com:jlzhiyuan/YCFrame.git</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.ycframe</groupId>
<artifactId>yc.frame</artifactId>
<version>0.0.2</version>
</dependency>
<dependency>
<groupId>com.ycframe</groupId>
<artifactId>yc.frame.web</artifactId>
<version>0.1.2</version>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>1.7</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<optimize>true</optimize>
</configuration>
</plugin>
<!-- ProGuard混淆插件-->
<plugin>
<groupId>com.pyx4me</groupId>
<artifactId>proguard-maven-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>proguard</goal>
</goals>
</execution>
</executions>
<configuration>
<obfuscate>true</obfuscate>
<proguardInclude>./YCFrame.pro</proguardInclude>
<libs>
<lib>${java.home}/lib/rt.jar</lib>
</libs>
</configuration>
<dependencies><!-- 使用5.2.1版本来混淆 -->
<dependency>
<groupId>net.sf.proguard</groupId>
<artifactId>proguard-base</artifactId>
<version>5.2.1</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>