Added a dependency for the annotation processor, and set maven compiler to show warnings.
diff --git a/pom.xml b/pom.xml
index 9dc1e35..5cb1c2f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -56,8 +56,7 @@
</dependencies>
</dependencyManagement>
- <dependencies>
-
+ <dependencies>
<!-- junit dependency -->
<dependency>
<groupId>junit</groupId>
@@ -165,6 +164,12 @@
<artifactId>jackson-core</artifactId>
<version>2.4.0</version>
</dependency>
+ <dependency>
+ <groupId>KorapAnnotationProcessor</groupId>
+ <artifactId>KorapAnnotationProcessor</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <scope>compile</scope>
+ </dependency>
</dependencies>
<build>
@@ -172,13 +177,14 @@
<outputDirectory>${basedir}/bin</outputDirectory>
<plugins>
<plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.5.1</version>
- <inherited>true</inherited>
- <configuration>
- <source>1.7</source>
- <target>1.7</target>
- </configuration>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.5.1</version>
+ <inherited>true</inherited>
+ <configuration>
+ <showWarnings>true</showWarnings>
+ <source>1.7</source>
+ <target>1.7</target>
+ </configuration>
</plugin>
<plugin>