pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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" xml:space="preserve">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>no.priv.bang</groupId>
  5. <artifactId>typlesmod</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>pom</packaging>
  8. <description>Top POM for the typeless graphical modeling framework.</description>
  9. <name>typlesmod</name>
  10. <url>http://maven.apache.org</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <typlesmod.version>1.0-SNAPSHIT</typlesmod.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>junit</groupId>
  18. <artifactId>junit</artifactId>
  19. <version>4.13.1</version>
  20. <scope>test</scope>
  21. </dependency>
  22. </dependencies>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.apache.maven.plugins</groupId>
  27. <artifactId>maven-compiler-plugin</artifactId>
  28. <configuration>
  29. <source>1.6</source>
  30. <target>1.6</target>
  31. </configuration>
  32. </plugin>
  33. </plugins>
  34. </build>
  35. <modules>
  36. <module>core</module>
  37. <module>server</module>
  38. <module>editor</module>
  39. </modules>
  40. </project>