summaryrefslogtreecommitdiff
path: root/container-core/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'container-core/pom.xml')
-rw-r--r--container-core/pom.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/container-core/pom.xml b/container-core/pom.xml
new file mode 100644
index 0000000..e16c761
--- /dev/null
+++ b/container-core/pom.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <artifactId>container-playground</artifactId>
+ <groupId>io.trygvis.container</groupId>
+ <version>1.0-SNAPSHOT</version>
+ </parent>
+ <artifactId>container-core</artifactId>
+ <properties>
+ <version.spring>3.2.2.RELEASE</version.spring>
+ </properties>
+ <dependencies>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-beans</artifactId>
+ <version>${version.spring}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-jdbc</artifactId>
+ <version>${version.spring}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-tx</artifactId>
+ <version>${version.spring}</version>
+ </dependency>
+ </dependencies>
+</project>