summaryrefslogtreecommitdiff
path: root/myapp/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'myapp/pom.xml')
-rw-r--r--myapp/pom.xml36
1 files changed, 36 insertions, 0 deletions
diff --git a/myapp/pom.xml b/myapp/pom.xml
new file mode 100644
index 0000000..7253422
--- /dev/null
+++ b/myapp/pom.xml
@@ -0,0 +1,36 @@
+<?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>myapp</artifactId>
+ <dependencies>
+ <dependency>
+ <groupId>io.trygvis.container</groupId>
+ <artifactId>container-core</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.trygvis.container</groupId>
+ <artifactId>container-compiler-plugin</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <compilerArguments>
+ <processor>io.trygvis.container.compiler.MyProcessor</processor>
+ </compilerArguments>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>