Biblioteca Java - Blame information for rev 10

Subversion Repositories:
Rev:
Rev Author Line No. Line
10 mihai 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <groupId>exemple</groupId>
5   <artifactId>webapp.hello</artifactId>
6   <packaging>war</packaging>
7   <version>0.0.1-SNAPSHOT</version>
8   <name>webapp.hello Maven Webapp</name>
9   <url>http://maven.apache.org</url>
10    <properties>
11         <java-version>1.6</java-version>
12         <org.springframework-version>4.0.3.RELEASE</org.springframework-version>
13         <org.aspectj-version>1.7.4</org.aspectj-version>
14         <org.slf4j-version>1.7.5</org.slf4j-version>
15         <hibernate.version>4.3.5.Final</hibernate.version>
16     </properties>
17  
18   <dependencies>
19         <!-- Spring -->
20         <dependency>
21             <groupId>org.springframework</groupId>
22             <artifactId>spring-context</artifactId>
23             <version>${org.springframework-version}</version>
24             <exclusions>
25                 <!-- Exclude Commons Logging in favor of SLF4j -->
26                 <exclusion>
27                     <groupId>commons-logging</groupId>
28                     <artifactId>commons-logging</artifactId>
29                 </exclusion>
30             </exclusions>
31         </dependency>
32         <dependency>
33             <groupId>org.springframework</groupId>
34             <artifactId>spring-webmvc</artifactId>
35             <version>${org.springframework-version}</version>
36         </dependency>
37         <dependency>
38             <groupId>org.springframework</groupId>
39             <artifactId>spring-tx</artifactId>
40             <version>${org.springframework-version}</version>
41         </dependency>
42  
43         <!-- Hibernate -->
44         <dependency>
45             <groupId>org.hibernate</groupId>
46             <artifactId>hibernate-core</artifactId>
47             <version>${hibernate.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>org.hibernate</groupId>
51             <artifactId>hibernate-entitymanager</artifactId>
52             <version>${hibernate.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>javax.validation</groupId>
56             <artifactId>validation-api</artifactId>
57             <version>1.1.0.Final</version>
58         </dependency>
59  
60         <!-- Apache Commons DBCP -->
61         <dependency>
62             <groupId>commons-dbcp</groupId>
63             <artifactId>commons-dbcp</artifactId>
64             <version>1.4</version>
65         </dependency>
66         <!-- Spring ORM -->
67         <dependency>
68             <groupId>org.springframework</groupId>
69             <artifactId>spring-orm</artifactId>
70             <version>${org.springframework-version}</version>
71         </dependency>
72  
73         <!-- AspectJ -->
74         <dependency>
75             <groupId>org.aspectj</groupId>
76             <artifactId>aspectjrt</artifactId>
77             <version>${org.aspectj-version}</version>
78         </dependency>
79  
80         <!-- Logging -->
81         <dependency>
82             <groupId>org.slf4j</groupId>
83             <artifactId>slf4j-api</artifactId>
84             <version>${org.slf4j-version}</version>
85         </dependency>
86         <dependency>
87             <groupId>org.slf4j</groupId>
88             <artifactId>jcl-over-slf4j</artifactId>
89             <version>${org.slf4j-version}</version>
90             <scope>runtime</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.slf4j</groupId>
94             <artifactId>slf4j-log4j12</artifactId>
95             <version>${org.slf4j-version}</version>
96             <scope>runtime</scope>
97         </dependency>
98         <dependency>
99             <groupId>com.itextpdf</groupId>
100             <artifactId>itextpdf</artifactId>
101             <version>5.0.6</version>
102         </dependency>
103  
104  
105         <dependency>
106             <groupId>log4j</groupId>
107             <artifactId>log4j</artifactId>
108             <version>1.2.15</version>
109             <exclusions>
110                 <exclusion>
111                     <groupId>javax.mail</groupId>
112                     <artifactId>mail</artifactId>
113                 </exclusion>
114                 <exclusion>
115                     <groupId>javax.jms</groupId>
116                     <artifactId>jms</artifactId>
117                 </exclusion>
118                 <exclusion>
119                     <groupId>com.sun.jdmk</groupId>
120                     <artifactId>jmxtools</artifactId>
121                 </exclusion>
122                 <exclusion>
123                     <groupId>com.sun.jmx</groupId>
124                     <artifactId>jmxri</artifactId>
125                 </exclusion>
126             </exclusions>
127             <scope>runtime</scope>
128         </dependency>
129  
130         <!-- @Inject -->
131         <dependency>
132             <groupId>javax.inject</groupId>
133             <artifactId>javax.inject</artifactId>
134             <version>1</version>
135         </dependency>
136  
137         <!-- Servlet -->
138         <dependency>
139             <groupId>javax.servlet</groupId>
140             <artifactId>servlet-api</artifactId>
141             <version>2.5</version>
142             <scope>provided</scope>
143         </dependency>
144         <dependency>
145             <groupId>javax.servlet.jsp</groupId>
146             <artifactId>jsp-api</artifactId>
147             <version>2.1</version>
148             <scope>provided</scope>
149         </dependency>
150         <dependency>
151             <groupId>javax.servlet</groupId>
152             <artifactId>jstl</artifactId>
153             <version>1.2</version>
154         </dependency>
155  
156         <!-- Test -->
157         <dependency>
158             <groupId>junit</groupId>
159             <artifactId>junit</artifactId>
160             <version>4.7</version>
161             <scope>test</scope>
162         </dependency>
163  
164     </dependencies>
165  
166  
167   <build>
168     <finalName>webapp</finalName>
169     <plugins>
170             <plugin>
171                 <artifactId>maven-compiler-plugin</artifactId>
172                 <configuration>
173                     <source>1.6</source>
174                     <target>1.6</target>
175                 </configuration>
176             </plugin>
177             <plugin>
178                 <artifactId>maven-surefire-plugin</artifactId>
179                 <configuration>
180                     <includes>
181                         <include>**/*Tests.java</include>
182                     </includes>
183                 </configuration>
184             </plugin>
185             <plugin>
186                 <groupId>org.apache.maven.plugins</groupId>
187                 <artifactId>maven-compiler-plugin</artifactId>
188                 <version>2.3.2</version>
189                 <configuration>
190                     <source>1.6</source>
191                     <target>1.6</target>
192                     <encoding>UTF-8</encoding>
193                 </configuration>
194             </plugin>
195         </plugins>
196   </build>
197 </project>