pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <parent>
  4. <groupId>org.v2gclarity.risev2g</groupId>
  5. <artifactId>parent</artifactId>
  6. <version>1.0.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <url>http://maven.apache.org</url>
  10. <artifactId>secc</artifactId>
  11. <name>risev2g.secc</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.v2gclarity.risev2g</groupId>
  15. <artifactId>shared</artifactId>
  16. <version>1.0.0-SNAPSHOT</version>
  17. </dependency>
  18. </dependencies>
  19. <build>
  20. <plugins>
  21. <plugin>
  22. <artifactId>maven-assembly-plugin</artifactId>
  23. <configuration>
  24. <archive>
  25. <manifest>
  26. <addClasspath>true</addClasspath>
  27. <mainClass>org.v2gclarity.risev2g.secc.main.StartSECC</mainClass>
  28. </manifest>
  29. </archive>
  30. <descriptorRefs>
  31. <descriptorRef>jar-with-dependencies</descriptorRef>
  32. </descriptorRefs>
  33. <appendAssemblyId>false</appendAssemblyId>
  34. </configuration>
  35. <executions>
  36. <execution>
  37. <id>make-my-jar-with-dependencies</id>
  38. <phase>package</phase>
  39. <goals>
  40. <goal>single</goal>
  41. </goals>
  42. </execution>
  43. </executions>
  44. </plugin>
  45. <plugin>
  46. <artifactId>maven-assembly-plugin</artifactId>
  47. <configuration>
  48. <appendAssemblyId>false</appendAssemblyId>
  49. <descriptor>${project.baseUri}src/assembly/bin.xml</descriptor>
  50. </configuration>
  51. <executions>
  52. <execution>
  53. <phase>package</phase>
  54. <goals>
  55. <goal>single</goal>
  56. </goals>
  57. </execution>
  58. </executions>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>