Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.34 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>org.cis3365</groupId>
  8. <artifactId>FinalApp</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <dependencies>
  11. <dependency>
  12. <groupId>commons-dbutils</groupId>
  13. <artifactId>commons-dbutils</artifactId>
  14. <version>1.7</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>com.microsoft.sqlserver</groupId>
  18. <artifactId>mssql-jdbc</artifactId>
  19. <version>6.3.3.jre8-preview</version>
  20. <scope>test</scope>
  21. </dependency>
  22.  
  23. <dependency>
  24. <groupId>com.microsoft.sqlserver</groupId>
  25. <artifactId>mssql-jdbc</artifactId>
  26. <version>RELEASE</version>
  27. </dependency>
  28.  
  29.  
  30. </dependencies>
  31. <build>
  32. <!--Build with maven-->
  33. <plugins>
  34. <plugin>
  35. <groupId>org.apache.maven.plugins</groupId>
  36. <artifactId>maven-compiler-plugin</artifactId>
  37. <configuration>
  38. <source>1.8</source>
  39. <target>1.8</target>
  40. </configuration>
  41. </plugin>
  42. <plugin>
  43. <groupId>org.apache.maven.plugins</groupId>
  44. <artifactId>maven-jar-plugin</artifactId>
  45. <configuration>
  46. <archive>
  47. <manifest>
  48. <addClasspath>true</addClasspath>
  49. <classpathPrefix>lib/</classpathPrefix>
  50. <mainClass>Main</mainClass>
  51. </manifest>
  52. </archive>
  53. </configuration>
  54. </plugin>
  55.  
  56. <plugin>
  57. <artifactId>maven-assembly-plugin</artifactId>
  58. <configuration>
  59. <archive>
  60. <manifest>
  61. <mainClass>Main</mainClass>
  62. </manifest>
  63. </archive>
  64. <descriptorRefs>
  65. <descriptorRef>jar-with-dependencies</descriptorRef>
  66. </descriptorRefs>
  67. </configuration>
  68. <executions>
  69. <execution>
  70. <id>make-assembly</id>
  71. <phase>package</phase>
  72. <goals>
  73. <goal>single</goal>
  74. </goals>
  75. </execution>
  76. </executions>
  77. </plugin>
  78. </plugins>
  79.  
  80. <!-- Include .fxml files in resources -->
  81. <resources>
  82. <resource>
  83. <directory>src/main/java</directory>
  84. <includes>
  85. <include>**/*.fxml</include>
  86.  
  87. </includes>
  88. </resource>
  89. </resources>
  90. </build>
  91.  
  92.  
  93.  
  94. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement