Last active
August 29, 2015 14:15
-
-
Save marsyang1/8c47f6ed876606e75ec4 to your computer and use it in GitHub Desktop.
Maven
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.cy</groupId> | |
<artifactId>TestMavenComplier</artifactId> | |
<version>1.0</version> | |
<packaging>jar</packaging> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion> | |
</properties> | |
<build> | |
<finalName>${project.artifactId}</finalName> | |
</build> | |
</project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.cy</groupId> | |
<artifactId>test-crowd-spring</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<packaging>pom</packaging> | |
<properties> | |
<!-- Generic properties --> | |
<java.version>1.7</java.version> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | |
<!-- Spring --> | |
<spring-framework.version>4.0.7.RELEASE</spring-framework.version> | |
<spring-security.version>3.2.6.RELEASE</spring-security.version> | |
<!-- Crowd --> | |
<crowd.version>2.8.0</crowd.version> | |
<!-- Logging --> | |
<logback.version>1.0.13</logback.version> | |
<slf4j.version>1.7.5</slf4j.version> | |
<!-- Test --> | |
<junit.version>4.11</junit.version> | |
</properties> | |
<repositories> | |
<repository> | |
<url>http://repository.primefaces.org/</url> | |
<id>PrimeFaces-maven-lib</id> | |
<layout>default</layout> | |
<name>Repository for library PrimeFaces-maven-lib</name> | |
</repository> | |
<repository> | |
<id>spring-milestones</id> | |
<url>http://repo.springsource.org/libs-milestone/</url> | |
</repository> | |
<repository> | |
<id>atlassian</id> | |
<url>https://m2proxy.atlassian.com/repository/public</url> | |
<snapshots> | |
<enabled>true</enabled> | |
<updatePolicy>always</updatePolicy> | |
</snapshots> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
</repository> | |
</repositories> | |
</project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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"> | |
<modelVersion>4.0.0</modelVersion> | |
<artifactId>crowd-spring-web</artifactId> | |
<packaging>war</packaging> | |
<parent> | |
<groupId>com.cy</groupId> | |
<artifactId>test-crowd-spring</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
</parent> | |
<dependencies> | |
<!-- SE Level --> | |
<dependency> | |
<groupId>ch.qos.logback</groupId> | |
<artifactId>logback-classic</artifactId> | |
<version>1.1.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.projectlombok</groupId> | |
<artifactId>lombok</artifactId> | |
<version>1.14.8</version> | |
</dependency> | |
<!-- Self dependency Level --> | |
<dependency> | |
<groupId>com.cy.security</groupId> | |
<artifactId>security-spring</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
</dependency> | |
<!-- Web Java Sepc dependency Level --> | |
<dependency> | |
<groupId>org.glassfish</groupId> | |
<artifactId>javax.faces</artifactId> | |
<version>2.2.8</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>javax.servlet-api</artifactId> | |
<version>3.1.0</version> | |
<scope>provided</scope> | |
</dependency> | |
<!-- Web dependency Level --> | |
<dependency> | |
<groupId>org.primefaces</groupId> | |
<artifactId>primefaces</artifactId> | |
<version>5.1</version> | |
</dependency> | |
<dependency> | |
<groupId>org.omnifaces</groupId> | |
<artifactId>omnifaces</artifactId> | |
<version>1.8</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-web</artifactId> | |
<version>4.0.7.RELEASE</version> | |
</dependency> | |
<!-- Test dependency Level --> | |
</dependencies> | |
<build> | |
<finalName>${project.artifactId}</finalName> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment