Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.61 KB | None | 0 0
  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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.mycompany</groupId>
  5. <artifactId>DatabaseConnection</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <build>
  9. <resources>
  10. <resource>
  11. <directory>src/main/resources</directory>
  12. <filtering>true</filtering>
  13. </resource>
  14. </resources>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.codehaus.mojo</groupId>
  18. <artifactId>sql-maven-plugin</artifactId>
  19. <version>1.5</version>
  20. <configuration>
  21. <driver>${jdbc.driver}</driver>
  22. <url>${jdbc.url}</url>
  23. <username>${jdbc.username}</username>
  24. <password>${jdbc.password}</password>
  25. </configuration>
  26. <dependencies>
  27. <dependency>
  28. <groupId>mysql</groupId>
  29. <artifactId>mysql-connector-java</artifactId>
  30. <version>6.0.6</version>
  31. </dependency>
  32. </dependencies>
  33. <executions>
  34. <execution>
  35. <phase>generate-test-resources</phase>
  36. <goals>
  37. <goal>execute</goal>
  38. </goals>
  39. <configuration>
  40. <srcFiles>
  41. <srcFile>src/test/resources/1-destroy.sql</srcFile>
  42. <srcFile>src/test/resources/2-create.sql</srcFile>
  43. <srcFile>src/test/resources/3-insert.sql</srcFile>
  44. </srcFiles>
  45. </configuration>
  46. </execution>
  47. </executions>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. <profiles>
  52. <profile>
  53. <id>mysql</id>
  54. <dependencies>
  55. <dependency>
  56. <groupId>mysql</groupId>
  57. <artifactId>mysql-connector-java</artifactId>
  58. <version>6.0.6</version>
  59. </dependency>
  60. </dependencies>
  61. <properties>
  62. <jdbc.url>jdbc:mysql://mysql.cs.bangor.ac.uk:3306/eeu69c</jdbc.url>
  63. <jdbc.username>eeu69c</jdbc.username>
  64. <jdbc.password>eeu69c</jdbc.password>
  65. <jdbc.driver>com.mysql.cj.jdbc.Driver</jdbc.driver>
  66. </properties>
  67. </profile>
  68. <profile>
  69. <id>homemysql</id>
  70. <dependencies>
  71. <dependency>
  72. <groupId>mysql</groupId>
  73. <artifactId>mysql-connector-java</artifactId>
  74. <version>6.0.6</version>
  75. </dependency>
  76. </dependencies>
  77. <properties>
  78. <jdbc.url>jdbc:mysql://mysql.cs.bangor.ac.uk:3306/eeu69c</jdbc.url>
  79. <jdbc.username>eeu69c</jdbc.username>
  80. <jdbc.password>eeu69c</jdbc.password>
  81. <jdbc.driver>com.mysql.cj.jdbc.Driver</jdbc.driver>
  82. </properties>
  83. </profile>
  84. </profiles>
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement