Leonardo Vannucci
2018-09-17 8b5a0e6b856f4b18785a98996dc383143b3f2f1f
dg1cloud-core/pom.xml
....@@ -33,7 +33,6 @@
3333 <dependency>
3434 <groupId>org.flywaydb</groupId>
3535 <artifactId>flyway-core</artifactId>
36
- <version>4.0.1</version>
3736 </dependency>
3837
3938 <dependency>
....@@ -71,6 +70,16 @@
7170 </dependency>
7271
7372 <dependency>
73
+ <groupId>org.springframework.ws</groupId>
74
+ <artifactId>spring-ws-core</artifactId>
75
+ </dependency>
76
+
77
+ <dependency>
78
+ <groupId>org.springframework.ws</groupId>
79
+ <artifactId>spring-ws-security</artifactId>
80
+ </dependency>
81
+
82
+ <dependency>
7483 <groupId>org.apache.httpcomponents</groupId>
7584 <artifactId>httpclient</artifactId>
7685 </dependency>
....@@ -98,10 +107,10 @@
98107 </dependency>
99108
100109 <dependency>
101
- <groupId>commons-codec</groupId>
102
- <artifactId>commons-codec</artifactId>
110
+ <groupId>org.webjars</groupId>
111
+ <artifactId>webjars-locator</artifactId>
112
+ <version>0.34</version>
103113 </dependency>
104
-
105114 <!-- bootstrap and jquery -->
106115 <dependency>
107116 <groupId>org.webjars</groupId>
....@@ -118,11 +127,49 @@
118127
119128 <build>
120129 <finalName>${project.artifactId}</finalName>
130
+ <resources>
131
+ <resource>
132
+ <directory>src/main/java</directory>
133
+ <includes>
134
+ <include>**/*.properties</include>
135
+ <include>**/*.sql</include>
136
+ </includes>
137
+ </resource>
138
+ <resource>
139
+ <directory>src/main/resource</directory>
140
+ <includes>
141
+ <include>application.properties</include>
142
+ </includes>
143
+ </resource>
144
+ </resources>
121145 <plugins>
122146 <plugin>
123147 <groupId>org.springframework.boot</groupId>
124148 <artifactId>spring-boot-maven-plugin</artifactId>
125149 </plugin>
150
+ <!-- tag::wsdl[] -->
151
+ <plugin>
152
+ <groupId>org.jvnet.jaxb2.maven2</groupId>
153
+ <artifactId>maven-jaxb2-plugin</artifactId>
154
+ <version>0.14.0</version>
155
+ <executions>
156
+ <execution>
157
+ <goals>
158
+ <goal>generate</goal>
159
+ </goals>
160
+ </execution>
161
+ </executions>
162
+ <configuration>
163
+ <schemaLanguage>WSDL</schemaLanguage>
164
+ <generatePackage>it.isharedoc.schemas.instance</generatePackage>
165
+ <schemas>
166
+ <schema>
167
+ <url>https://democorepa3.grupposistematica.it/isharedoc/webservices/webserviceInstance3.wsdl</url>
168
+ </schema>
169
+ </schemas>
170
+ </configuration>
171
+ </plugin>
172
+ <!-- end::wsdl[] -->
126173 </plugins>
127174 </build>
128175