diff options
Diffstat (limited to 'persistence-compile-time')
-rw-r--r-- | persistence-compile-time/pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/persistence-compile-time/pom.xml b/persistence-compile-time/pom.xml new file mode 100644 index 0000000..90f5b8a --- /dev/null +++ b/persistence-compile-time/pom.xml @@ -0,0 +1,19 @@ +<?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>persistence-compile-time</artifactId> + <dependencies> + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <version>2.6</version> + </dependency> + </dependencies> +</project> |