Complete the separation of spring related implementations
[smart-util.git] / smart-bean-spring-util / pom.xml
blob034cc0ad86c46ddf898c458391041cebd030e9cf
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project>
3                 <parent>
4                                 <artifactId>smart-util</artifactId>
5                                 <groupId>com.smartitengineering</groupId>
6                                 <version>0.2-SNAPSHOT</version>
7                 </parent>
8                 <modelVersion>4.0.0</modelVersion>
9                 <groupId>com.smartitengineering.smart-util</groupId>
10                 <artifactId>smart-bean-spring-util</artifactId>
11                 <name>smart-bean-spring-util</name>
12                 <dependencies>
13                                 <dependency>
14                                                 <groupId>com.smartitengineering.smart-util</groupId>
15                                                 <artifactId>smart-bean-util</artifactId>
16                                                 <version>${project.version}</version>
17                                 </dependency>
18                                 <dependency>
19                                                 <groupId>org.springframework</groupId>
20                                                 <artifactId>spring-beans</artifactId>
21                                                 <version>${spring.version}</version>
22                                 </dependency>
23                                 <dependency>
24                                                 <groupId>org.springframework</groupId>
25                                                 <artifactId>spring-context</artifactId>
26                                                 <version>${spring.version}</version>
27                                                 <scope>test</scope>
28                                 </dependency>
29                                 <dependency>
30                                                 <groupId>junit</groupId>
31                                                 <artifactId>junit</artifactId>
32                                                 <version>3.8.1</version>
33                                                 <scope>test</scope>
34                                 </dependency>
35                 </dependencies>
36                 <build>
37                                 <plugins>
38                                                 <plugin>
39                                                                 <artifactId>maven-compiler-plugin</artifactId>
40                                                                 <version>${compiler.version}</version>
41                                                                 <configuration>
42                                                                                 <source>1.5</source>
43                                                                                 <target>1.5</target>
44                                                                 </configuration>
45                                                 </plugin>
46                                                 <plugin>
47                                                                 <groupId>org.apache.maven.plugins</groupId>
48                                                                 <artifactId>maven-javadoc-plugin</artifactId>
49                                                                 <version>${javadoc.version}</version>
50                                                                 <configuration>
51                                                                                 <attach>true</attach>
52                                                                 </configuration>
53                                                                 <executions>
54                                                                                 <execution>
55                                                                                                 <id>gen-javadoc</id>
56                                                                                                 <phase>install</phase>
57                                                                                                 <goals>
58                                                                                                                 <goal>jar</goal>
59                                                                                                 </goals>
60                                                                                 </execution>
61                                                                 </executions>
62                                                 </plugin>
63                                                 <plugin>
64                                                                 <groupId>org.apache.maven.plugins</groupId>
65                                                                 <artifactId>maven-source-plugin</artifactId>
66                                                                 <version>${source.version}</version>
67                                                                 <configuration>
68                                                                                 <attach>true</attach>
69                                                                 </configuration>
70                                                                 <executions>
71                                                                                 <execution>
72                                                                                                 <id>attach-sources</id>
73                                                                                                 <phase>verify</phase>
74                                                                                                 <goals>
75                                                                                                                 <goal>jar</goal>
76                                                                                                 </goals>
77                                                                                 </execution>
78                                                                 </executions>
79                                                 </plugin>
80                                                 <plugin>
81                                                                 <groupId>org.apache.maven.plugins</groupId>
82                                                                 <artifactId>maven-surefire-plugin</artifactId>
83                                                                 <version>${surefire.version}</version>
84                                                                 <configuration>
85                                                                                 <excludes>
86                                                                                                 <exclude>**/TestBean*.java</exclude>
87                                                                                 </excludes>
88                                                                 </configuration>
89                                                 </plugin>
90                                 </plugins>
91                 </build>
92 </project>