| .. | .. |
|---|
| 33 | 33 | <dependency> |
|---|
| 34 | 34 | <groupId>org.flywaydb</groupId> |
|---|
| 35 | 35 | <artifactId>flyway-core</artifactId> |
|---|
| 36 | | - <version>4.0.1</version> |
|---|
| 37 | 36 | </dependency> |
|---|
| 38 | 37 | |
|---|
| 39 | 38 | <dependency> |
|---|
| .. | .. |
|---|
| 71 | 70 | </dependency> |
|---|
| 72 | 71 | |
|---|
| 73 | 72 | <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> |
|---|
| 74 | 83 | <groupId>org.apache.httpcomponents</groupId> |
|---|
| 75 | 84 | <artifactId>httpclient</artifactId> |
|---|
| 76 | 85 | </dependency> |
|---|
| .. | .. |
|---|
| 98 | 107 | </dependency> |
|---|
| 99 | 108 | |
|---|
| 100 | 109 | <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> |
|---|
| 103 | 113 | </dependency> |
|---|
| 104 | | - |
|---|
| 105 | 114 | <!-- bootstrap and jquery --> |
|---|
| 106 | 115 | <dependency> |
|---|
| 107 | 116 | <groupId>org.webjars</groupId> |
|---|
| .. | .. |
|---|
| 118 | 127 | |
|---|
| 119 | 128 | <build> |
|---|
| 120 | 129 | <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> |
|---|
| 121 | 145 | <plugins> |
|---|
| 122 | 146 | <plugin> |
|---|
| 123 | 147 | <groupId>org.springframework.boot</groupId> |
|---|
| 124 | 148 | <artifactId>spring-boot-maven-plugin</artifactId> |
|---|
| 125 | 149 | </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[] --> |
|---|
| 126 | 173 | </plugins> |
|---|
| 127 | 174 | </build> |
|---|
| 128 | 175 | |
|---|