|
1 | 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/maven-v4_0_0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 4 | <modelVersion>4.0.0</modelVersion> |
4 | 5 |
|
5 | 6 | <groupId>com.arcadeanalytics</groupId> |
|
29 | 30 | <m2e.apt.activation>jdt_apt</m2e.apt.activation> |
30 | 31 | <run.addResources>false</run.addResources> |
31 | 32 | <!-- These remain empty unless the corresponding profile is active --> |
32 | | - <profile.no-liquibase /> |
33 | | - <profile.swagger /> |
| 33 | + <profile.no-liquibase/> |
| 34 | + <profile.swagger/> |
34 | 35 |
|
35 | 36 | <!-- Dependency versions --> |
36 | 37 | <jhipster-dependencies.version>0.1.14</jhipster-dependencies.version> |
|
54 | 55 | <jung.version>2.1.1</jung.version> |
55 | 56 | <arcade-data.version>1.0.1</arcade-data.version> |
56 | 57 | <arcade-connectors.version>1.0.6-SNAPSHOT</arcade-connectors.version> |
| 58 | + <mysql-connector-java.version>8.0.16</mysql-connector-java.version> |
| 59 | + <dw-jdbc.version>0.4.4</dw-jdbc.version> |
57 | 60 |
|
58 | 61 | <!-- Plugin versions --> |
59 | 62 | <maven-clean-plugin.version>3.1.0</maven-clean-plugin.version> |
|
476 | 479 | <version>${arcade-connectors.version}</version> |
477 | 480 | </dependency> |
478 | 481 |
|
| 482 | + |
| 483 | + <!--Additiona JDBC drivers --> |
| 484 | + |
| 485 | + <dependency> |
| 486 | + <groupId>world.data</groupId> |
| 487 | + <artifactId>dw-jdbc</artifactId> |
| 488 | + <classifier>shaded</classifier> |
| 489 | + <version>${dw-jdbc.version}</version> |
| 490 | + </dependency> |
| 491 | + <dependency> |
| 492 | + <groupId>mysql</groupId> |
| 493 | + <artifactId>mysql-connector-java</artifactId> |
| 494 | + <version>${mysql-connector-java.version}</version> |
| 495 | + </dependency> |
| 496 | + |
| 497 | + |
| 498 | + <!--Other deps --> |
479 | 499 | <dependency> |
480 | 500 | <groupId>net.sf.jung</groupId> |
481 | 501 | <artifactId>jung-api</artifactId> |
|
527 | 547 | <executions> |
528 | 548 | <!-- Minimal config // --> |
529 | 549 | <!--<execution>--> |
530 | | - <!--<id>GenerateGitChangelog</id>--> |
531 | | - <!--<phase>generate-sources</phase>--> |
532 | | - <!--<goals>--> |
533 | | - <!--<goal>git-changelog</goal>--> |
534 | | - <!--</goals>--> |
| 550 | + <!--<id>GenerateGitChangelog</id>--> |
| 551 | + <!--<phase>generate-sources</phase>--> |
| 552 | + <!--<goals>--> |
| 553 | + <!--<goal>git-changelog</goal>--> |
| 554 | + <!--</goals>--> |
535 | 555 | <!--</execution>--> |
536 | 556 | </executions> |
537 | 557 | </plugin> |
|
849 | 869 | </diffChangeLogFile> |
850 | 870 | <driver>org.h2.Driver</driver> |
851 | 871 | <url>jdbc:h2:file:./target/h2db/db/arcadeanalytics</url> |
852 | | - <defaultSchemaName /> |
| 872 | + <defaultSchemaName/> |
853 | 873 | <username>arcadeanalytics</username> |
854 | | - <password /> |
| 874 | + <password/> |
855 | 875 | <referenceUrl>hibernate:spring:com.arcadeanalytics.domain?dialect=org.hibernate.dialect.H2Dialect&hibernate.physical_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy&hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy</referenceUrl> |
856 | 876 | <verbose>true</verbose> |
857 | 877 | <logging>debug</logging> |
|
985 | 1005 | </goals> |
986 | 1006 | </pluginExecutionFilter> |
987 | 1007 | <action> |
988 | | - <ignore /> |
| 1008 | + <ignore/> |
989 | 1009 | </action> |
990 | 1010 | </pluginExecution> |
991 | 1011 | <pluginExecution> |
|
999 | 1019 | </goals> |
1000 | 1020 | </pluginExecutionFilter> |
1001 | 1021 | <action> |
1002 | | - <ignore /> |
| 1022 | + <ignore/> |
1003 | 1023 | </action> |
1004 | 1024 | </pluginExecution> |
1005 | 1025 | </pluginExecutions> |
|
0 commit comments