Biblioteca Java - Blame information for rev 14

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