Biblioteca Java - Blame information for rev 9

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