Newer
Older
DH_Apicture / src / views / voice / lamejs / pom.xml
@zhangqy zhangqy on 29 Nov 1 KB first commit
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>jump3r</groupId>
  4. <artifactId>jump3r</artifactId>
  5. <version>1.0.3</version>
  6. <build>
  7. <resources>
  8. <resource>
  9. <directory>src/main/resources</directory>
  10. <excludes>
  11. <exclude>LameUI.xml</exclude>
  12. <exclude>picture.png</exclude>
  13. <exclude>run.bat</exclude>
  14. <exclude>run.sh</exclude>
  15. </excludes>
  16. </resource>
  17. </resources>
  18. <plugins>
  19. <plugin>
  20. <groupId>org.apache.maven.plugins</groupId>
  21. <artifactId>maven-jar-plugin</artifactId>
  22. <configuration>
  23. <archive>
  24. <manifest>
  25. <addClasspath>true</addClasspath>
  26. <mainClass>ui.LameUI</mainClass>
  27. </manifest>
  28. </archive>
  29. </configuration>
  30. </plugin>
  31. <plugin>
  32. <artifactId>maven-assembly-plugin</artifactId>
  33. <configuration>
  34. <descriptors>
  35. <descriptor>src/main/assembly/bundle.xml</descriptor>
  36. </descriptors>
  37. <finalName>jump3r-1.0.3</finalName>
  38. </configuration>
  39. <executions>
  40. <execution>
  41. <id>make-assembly</id>
  42. <phase>package</phase>
  43. <goals>
  44. <goal>single</goal>
  45. </goals>
  46. </execution>
  47. </executions>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. <dependencies>
  52. <dependency>
  53. <groupId>org.jma</groupId>
  54. <artifactId>jma-api</artifactId>
  55. <version>1.0.1</version>
  56. <scope>compile</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.swixml</groupId>
  60. <artifactId>swixml</artifactId>
  61. <version>1.5.144</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>junit</groupId>
  65. <artifactId>junit</artifactId>
  66. <version>4.11</version>
  67. </dependency>
  68. </dependencies>
  69. </project>