Skip to content

Commit 2d3c6b1

Browse files
committed
pom.xml
pom.xml
1 parent 7631bd5 commit 2d3c6b1

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

spring-custom-event/pom.xml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>com.hmkcode</groupId>
6+
<artifactId>spring-event</artifactId>
7+
<version>1.0-SNAPSHOT</version>
8+
<packaging>jar</packaging>
9+
10+
<name>spring-event</name>
11+
<url>http://maven.apache.org</url>
12+
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
<org.springframework.version>3.1.0.RELEASE</org.springframework.version>
16+
</properties>
17+
18+
<dependencies>
19+
<dependency>
20+
<groupId>org.springframework</groupId>
21+
<artifactId>spring-core</artifactId>
22+
<version>${org.springframework.version}</version>
23+
</dependency>
24+
<dependency>
25+
<groupId>org.springframework</groupId>
26+
<artifactId>spring-beans</artifactId>
27+
<version>${org.springframework.version}</version>
28+
</dependency>
29+
<dependency>
30+
<groupId>org.springframework</groupId>
31+
<artifactId>spring-context</artifactId>
32+
<version>${org.springframework.version}</version>
33+
</dependency>
34+
<dependency>
35+
<groupId>org.springframework</groupId>
36+
<artifactId>spring-context-support</artifactId>
37+
<version>${org.springframework.version}</version>
38+
</dependency>
39+
</dependencies>
40+
<build>
41+
<plugins>
42+
<plugin>
43+
<groupId>org.codehaus.mojo</groupId>
44+
<artifactId>exec-maven-plugin</artifactId>
45+
<version>1.2.1</version>
46+
<executions>
47+
<execution>
48+
<id>my-execution</id>
49+
<phase>compile</phase>
50+
<goals>
51+
<goal>java</goal>
52+
</goals>
53+
</execution>
54+
</executions>
55+
<configuration>
56+
<mainClass>com.hmkcode.App</mainClass>
57+
</configuration>
58+
</plugin>
59+
</plugins>
60+
</build>
61+
62+
</project>

0 commit comments

Comments
 (0)