| dg1cloud-core/pom.xml | ●●●●● patch | view | raw | blame | history | |
| dg1cloud-core/src/main/resources/application.properties | ●●●●● patch | view | raw | blame | history |
dg1cloud-core/pom.xml
.. .. @@ -6,7 +6,7 @@ 6 6 <groupId>it.digione.cloud</groupId> 7 7 <artifactId>dg1cloud-core</artifactId> 8 8 <version>0.0.1-SNAPSHOT</version> 9 - <packaging>jar</packaging>9 + <packaging>war</packaging>10 10 11 11 <name>dg1cloud-core</name> 12 12 <description>Servizio cloud per ricezione file</description> .. .. @@ -33,6 +33,7 @@ 33 33 <dependency> 34 34 <groupId>org.flywaydb</groupId> 35 35 <artifactId>flyway-core</artifactId> 36 + <version>4.0.1</version>36 37 </dependency> 37 38 38 39 <dependency> .. .. @@ -44,6 +45,12 @@ 44 45 <dependency> 45 46 <groupId>org.springframework.boot</groupId> 46 47 <artifactId>spring-boot-starter-web</artifactId> 48 + <exclusions>49 + <exclusion>50 + <groupId>org.springframework.boot</groupId>51 + <artifactId>spring-boot-starter-tomcat</artifactId>52 + </exclusion>53 + </exclusions>47 54 </dependency> 48 55 49 56 <dependency> .. .. @@ -110,6 +117,7 @@ 110 117 </dependencies> 111 118 112 119 <build> 120 + <finalName>${project.artifactId}</finalName>113 121 <plugins> 114 122 <plugin> 115 123 <groupId>org.springframework.boot</groupId> dg1cloud-core/src/main/resources/application.properties
.. .. @@ -1,6 +1,6 @@ 1 1 spring.datasource.url=jdbc:postgresql://localhost:5432/dg1cloud 2 -spring.datasource.username=postgres3 -spring.datasource.password=passero2 +#spring.datasource.username=postgres3 +#spring.datasource.password=passero4 4 spring.datasource.driver-class-name=org.postgresql.Driver 5 5 spring.datasource.tomcat.initial-size=10 6 6 spring.datasource.tomcat.max-wait=30000 .. .. @@ -14,6 +14,6 @@ 14 14 15 15 spring.jpa.open-in-view=true 16 16 17 -server.address=vannux.grupposistematica.it17 +#server.address=vannux.grupposistematica.it18 18 19 19 logging.level.it.digione.dg1cloud=DEBUG