Ranides Atterwim há 10 anos atrás
pai
commit
97c2475c42
1 ficheiros alterados com 23 adições e 0 exclusões
  1. 23 0
      assira.drafts/pom.xml

+ 23 - 0
assira.drafts/pom.xml

@@ -11,10 +11,33 @@
     <version>1.0</version>
     <packaging>jar</packaging>
     
+    <properties>
+        <toolsjar>${java.home}/../lib/tools.jar</toolsjar>
+    </properties>
+    
     <dependencies>
         <dependency>
             <groupId>net.ranides</groupId>
             <artifactId>assira</artifactId>
         </dependency>
+        <dependency>
+            <groupId>com.sun</groupId>
+            <artifactId>tools</artifactId>
+            <version>${java.version}</version>
+            <scope>system</scope>
+            <systemPath>${toolsjar}</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.12</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.hamcrest</groupId>
+            <artifactId>hamcrest-core</artifactId>
+            <version>1.3</version>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 </project>