Guest User

Untitled

a guest
Apr 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project>
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>my.spatial</groupId>
  5. <artifactId>my-spatial-ear</artifactId>
  6. <version>1.0.0-SNAPSHOT</version>
  7. <packaging>ear</packaging>
  8. <name>yo</name>
  9. <description>sdfhsdfjksdhfsd</description>
  10. <build>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-ear-plugin</artifactId>
  15. <version>2.3</version>
  16. <configuration>
  17. <displayName>my.spatial</displayName>
  18. <description>my.spatial services and applications</description>
  19. <version>5</version>
  20. <modules>
  21. <webModule>
  22. <groupId>my.spatial</groupId>
  23. <artifactId>geoserver-war</artifactId>
  24. <contextRoot>/geoserver</contextRoot>
  25. </webModule>
  26. </modules>
  27. </configuration>
  28. </plugin>
  29. </plugins>
  30. </build>
  31. <dependencies>
  32. <dependency>
  33. <groupId>my.spatial</groupId>
  34. <artifactId>geoserver-war</artifactId>
  35. <version>${project.version}</version>
  36. <type>war</type>
  37. </dependency>
  38. </dependencies>
  39.  
  40. </project>
Add Comment
Please, Sign In to add comment