Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <project>
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>se.waymark.drools</groupId>
  4. <artifactId>drools-hello-world</artifactId>
  5. <version>1.0.0-SNAPSHOT</version>
  6. <dependencies>
  7. <dependency>
  8. <groupId>org.drools</groupId>
  9. <artifactId>drools-compiler</artifactId>
  10. <version>5.4.0.Final</version>
  11. </dependency>
  12. <dependency>
  13. <groupId>junit</groupId>
  14. <artifactId>junit</artifactId>
  15. <version>4.10</version>
  16. </dependency>
  17. </dependencies>
  18. <build>
  19. <plugins>
  20. <plugin>
  21. <groupId>org.apache.maven.plugins</groupId>
  22. <artifactId>maven-compiler-plugin</artifactId>
  23. <version>2.5.1</version>
  24. <configuration>
  25. <source>1.5</source>
  26. <target>1.5</target>
  27. </configuration>
  28. </plugin>
  29. </plugins>
  30. </build>
  31. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement