updated
[pnews.git] / war / pom.xml
index aaa43c7..7f1e992 100644 (file)
@@ -6,6 +6,12 @@
         <packaging>war</packaging>
         <name>pnews</name>
 
+        <properties>
+                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+                <maven.compiler.source>1.8</maven.compiler.source>
+                <maven.compiler.target>1.8</maven.compiler.target>
+        </properties>
+
         <dependencies>
                 <dependency>
                         <groupId>javax.servlet</groupId>
                         <version>3.1.0</version>
                         <scope>provided</scope>
                 </dependency>
+                <dependency>
+                        <groupId>pnews</groupId>
+                        <artifactId>pnews-core</artifactId>
+                        <version>1.0</version>
+                </dependency>
+                <dependency>
+                        <groupId>com.rometools</groupId>
+                        <artifactId>rome</artifactId>
+                        <version>1.8.0</version>
+                </dependency>
+                <dependency>
+                        <groupId>org.jsoup</groupId>
+                        <artifactId>jsoup</artifactId>
+                        <version>1.10.3</version>
+                </dependency>
         </dependencies>
 </project>