Advertisement
adelmo00

Pom.xml Spring Security

Jul 14th, 2015
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.67 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <project
  3.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4.     xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5.     <modelVersion>4.0.0</modelVersion>
  6.     <groupId>br.com.manager</groupId>
  7.     <artifactId>manager</artifactId>
  8.     <version>1.0</version>
  9.     <packaging>war</packaging>
  10.     <name>Manager</name>
  11.     <properties>
  12.         <apectj.version>1.8.5</apectj.version>
  13.         <maven.compiler.source>1.8</maven.compiler.source>
  14.         <maven.compiler.target>1.8</maven.compiler.target>
  15.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16.         <springsecurity.version>4.0.1.RELEASE</springsecurity.version>
  17.         <version.compiler.plugin>3.1</version.compiler.plugin>
  18.         <version.jboss.bom>8.2.1.Final</version.jboss.bom>
  19.         <version.org.eclipse.m2e>1.0.0</version.org.eclipse.m2e>
  20.         <version.ro.isdc.wro4j>1.4.4</version.ro.isdc.wro4j>
  21.         <version.surefire.plugin>2.16</version.surefire.plugin>
  22.         <version.war.plugin>2.5</version.war.plugin>
  23.         <version.wildfly>8.2.0.Final</version.wildfly>
  24.         <version.wildfly.maven.plugin>1.0.2.Final</version.wildfly.maven.plugin>
  25.     </properties>
  26.     <dependencyManagement>
  27.         <dependencies>
  28.             <dependency>
  29.                 <groupId>org.wildfly.bom</groupId>
  30.                 <artifactId>jboss-javaee-7.0-with-tools</artifactId>
  31.                 <version>${version.jboss.bom}</version>
  32.                 <type>pom</type>
  33.                 <scope>import</scope>
  34.             </dependency>
  35.             <dependency>
  36.                 <groupId>org.wildfly.bom</groupId>
  37.                 <artifactId>jboss-javaee-7.0-with-hibernate</artifactId>
  38.                 <version>${version.jboss.bom}</version>
  39.                 <type>pom</type>
  40.                 <scope>import</scope>
  41.             </dependency>
  42.             <dependency>
  43.                 <groupId>javax.ws.rs</groupId>
  44.                 <artifactId>javax.ws.rs-api</artifactId>
  45.                 <version>2.0</version>
  46.                 <scope>provided</scope>
  47.             </dependency>
  48.             <dependency>
  49.                 <groupId>org.jboss.spec</groupId>
  50.                 <artifactId>jboss-javaee-6.0</artifactId>
  51.                 <version>3.0.2.Final</version>
  52.                 <type>pom</type>
  53.                 <scope>import</scope>
  54.             </dependency>
  55.             <dependency>
  56.                 <groupId>javax.enterprise</groupId>
  57.                 <artifactId>cdi-api</artifactId>
  58.                 <version>1.1</version>
  59.                 <scope>provided</scope>
  60.             </dependency>
  61.         </dependencies>
  62.     </dependencyManagement>
  63.     <dependencies>
  64.         <dependency>
  65.             <groupId>org.jboss.spec.javax.annotation</groupId>
  66.             <artifactId>jboss-annotations-api_1.2_spec</artifactId>
  67.             <scope>provided</scope>
  68.         </dependency>
  69.         <dependency>
  70.             <groupId>org.hibernate.javax.persistence</groupId>
  71.             <artifactId>hibernate-jpa-2.1-api</artifactId>
  72.             <scope>provided</scope>
  73.         </dependency>
  74.         <dependency>
  75.             <groupId>org.jboss.spec.javax.servlet</groupId>
  76.             <artifactId>jboss-servlet-api_3.1_spec</artifactId>
  77.             <scope>provided</scope>
  78.         </dependency>
  79.         <dependency>
  80.             <groupId>org.hibernate</groupId>
  81.             <artifactId>hibernate-validator</artifactId>
  82.             <scope>provided</scope>
  83.         </dependency>
  84.         <dependency>
  85.             <groupId>org.hibernate</groupId>
  86.             <artifactId>hibernate-entitymanager</artifactId>
  87.             <scope>provided</scope>
  88.         </dependency>
  89.         <dependency>
  90.             <groupId>javax.ws.rs</groupId>
  91.             <artifactId>javax.ws.rs-api</artifactId>
  92.             <scope>provided</scope>
  93.         </dependency>
  94.         <dependency>
  95.             <groupId>org.jboss.spec.javax.ejb</groupId>
  96.             <artifactId>jboss-ejb-api_3.1_spec</artifactId>
  97.             <scope>provided</scope>
  98.         </dependency>
  99.  
  100.         <dependency>
  101.             <groupId>org.springframework.security</groupId>
  102.             <artifactId>spring-security-web</artifactId>
  103.             <version>${springsecurity.version}</version>
  104.         </dependency>
  105.         <dependency>
  106.             <groupId>org.springframework.security</groupId>
  107.             <artifactId>spring-security-taglibs</artifactId>
  108.             <version>${springsecurity.version}</version>
  109.         </dependency>
  110.         <dependency>
  111.             <groupId>org.springframework.security</groupId>
  112.             <artifactId>spring-security-config</artifactId>
  113.             <version>${springsecurity.version}</version>
  114.         </dependency>
  115.         <dependency>
  116.             <groupId>commons-io</groupId>
  117.             <artifactId>commons-io</artifactId>
  118.             <version>2.4</version>
  119.         </dependency>
  120.         <dependency>
  121.             <groupId>commons-fileupload</groupId>
  122.             <artifactId>commons-fileupload</artifactId>
  123.             <version>1.3.1</version>
  124.         </dependency>
  125.         <dependency>
  126.             <groupId>commons-lang</groupId>
  127.             <artifactId>commons-lang</artifactId>
  128.             <version>2.4</version>
  129.         </dependency>
  130.         <dependency>
  131.             <groupId>commons-beanutils</groupId>
  132.             <artifactId>commons-beanutils</artifactId>
  133.             <version>1.9.2</version>
  134.         </dependency>
  135.         <dependency>
  136.             <groupId>org.aspectj</groupId>
  137.             <artifactId>aspectjweaver</artifactId>
  138.             <version>${apectj.version}</version>
  139.         </dependency>
  140.         <dependency>
  141.             <groupId>mysql</groupId>
  142.             <artifactId>mysql-connector-java</artifactId>
  143.             <version>5.1.35</version>
  144.             <scope>test</scope>
  145.         </dependency>
  146.         <dependency>
  147.             <groupId>com.yahoo.platform.yui</groupId>
  148.             <artifactId>yuicompressor</artifactId>
  149.             <version>2.4.8</version>
  150.             <exclusions>
  151.                 <exclusion>
  152.                     <artifactId>js</artifactId>
  153.                     <groupId>rhino</groupId>
  154.                 </exclusion>
  155.             </exclusions>
  156.         </dependency>
  157.         <dependency>
  158.             <groupId>javax.enterprise</groupId>
  159.             <artifactId>cdi-api</artifactId>
  160.             <scope>provided</scope>
  161.         </dependency>
  162.         <dependency>
  163.             <groupId>org.springframework.data</groupId>
  164.             <artifactId>spring-data-jpa</artifactId>
  165.             <version>1.8.1.RELEASE</version>
  166.         </dependency>
  167.     </dependencies>
  168.     <build>
  169.         <finalName>${project.artifactId}</finalName>
  170.         <plugins>
  171.             <plugin>
  172.                 <artifactId>maven-war-plugin</artifactId>
  173.                 <version>${version.war.plugin}</version>
  174.                 <configuration>
  175.                     <failOnMissingWebXml>false</failOnMissingWebXml>
  176.                 </configuration>
  177.             </plugin>
  178.         </plugins>
  179.     </build>
  180. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement