|
38 | 38 | <artifactId>axis2</artifactId> |
39 | 39 | <version>${cs.axis2.version}</version> |
40 | 40 | </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>org.apache.axis2</groupId> |
| 43 | + <artifactId>axis2-webapp</artifactId> |
| 44 | + <type>war</type> |
| 45 | + <version>${cs.axis2.version}</version> |
| 46 | + </dependency> |
41 | 47 | <dependency> |
42 | 48 | <groupId>org.apache.ws.commons.axiom</groupId> |
43 | 49 | <artifactId>axiom-api</artifactId> |
|
84 | 90 | <artifactId>CAStorSDK</artifactId> |
85 | 91 | <version>1.3.1-CS40</version> |
86 | 92 | </dependency> |
| 93 | + <dependency> |
| 94 | + <groupId>com.apache.rampart</groupId> |
| 95 | + <artifactId>rahas</artifactId> |
| 96 | + <version>1.5</version> |
| 97 | + <type>mar</type> |
| 98 | + </dependency> |
| 99 | + <dependency> |
| 100 | + <groupId>com.apache.rampart</groupId> |
| 101 | + <artifactId>rampart</artifactId> |
| 102 | + <version>1.5</version> |
| 103 | + <type>mar</type> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>org.apache.rampart</groupId> |
| 107 | + <artifactId>rampart-core</artifactId> |
| 108 | + <version>1.5</version> |
| 109 | + <scope>runtime</scope> |
| 110 | + </dependency> |
| 111 | + <dependency> |
| 112 | + <groupId>org.apache.rampart</groupId> |
| 113 | + <artifactId>rampart-policy</artifactId> |
| 114 | + <version>1.5</version> |
| 115 | + <scope>runtime</scope> |
| 116 | + </dependency> |
| 117 | + <dependency> |
| 118 | + <groupId>org.apache.rampart</groupId> |
| 119 | + <artifactId>rampart-trust</artifactId> |
| 120 | + <version>1.5</version> |
| 121 | + <scope>runtime</scope> |
| 122 | + </dependency> |
| 123 | + <dependency> |
| 124 | + <groupId>org.slf4j</groupId> |
| 125 | + <artifactId>slf4j-jdk14</artifactId> |
| 126 | + <version>1.5.11</version> |
| 127 | + <scope>runtime</scope> |
| 128 | + </dependency> |
| 129 | + <dependency> |
| 130 | + <groupId>org.slf4j</groupId> |
| 131 | + <artifactId>slf4j-api</artifactId> |
| 132 | + <version>1.5.11</version> |
| 133 | + <scope>runtime</scope> |
| 134 | + </dependency> |
| 135 | + <dependency> |
| 136 | + <groupId>org.apache.ws.security</groupId> |
| 137 | + <artifactId>wss4j</artifactId> |
| 138 | + <version>1.5.8</version> |
| 139 | + <scope>runtime</scope> |
| 140 | + </dependency> |
| 141 | + <dependency> |
| 142 | + <groupId>joda-time</groupId> |
| 143 | + <artifactId>joda-time</artifactId> |
| 144 | + <version>1.5.2</version> |
| 145 | + <scope>runtime</scope> |
| 146 | + </dependency> |
| 147 | + <dependency> |
| 148 | + <groupId>org.opensaml</groupId> |
| 149 | + <artifactId>xmltooling</artifactId> |
| 150 | + <version>1.3.1</version> |
| 151 | + <scope>runtime</scope> |
| 152 | + </dependency> |
| 153 | + <dependency> |
| 154 | + <groupId>org.opensaml</groupId> |
| 155 | + <artifactId>openws</artifactId> |
| 156 | + <version>1.4.1</version> |
| 157 | + <scope>runtime</scope> |
| 158 | + </dependency> |
| 159 | + <dependency> |
| 160 | + <groupId>velocity</groupId> |
| 161 | + <artifactId>velocity</artifactId> |
| 162 | + <version>1.5</version> |
| 163 | + <scope>runtime</scope> |
| 164 | + </dependency> |
| 165 | + <dependency> |
| 166 | + <groupId>org.opensaml</groupId> |
| 167 | + <artifactId>opensaml</artifactId> |
| 168 | + <version>2.2.3</version> |
| 169 | + <scope>runtime</scope> |
| 170 | + </dependency> |
| 171 | + <dependency> |
| 172 | + <groupId>org.apache.santuario</groupId> |
| 173 | + <artifactId>xmlsec</artifactId> |
| 174 | + <version>1.4.2</version> |
| 175 | + <scope>runtime</scope> |
| 176 | + </dependency> |
| 177 | + <dependency> |
| 178 | + <groupId>org.bouncycastle</groupId> |
| 179 | + <artifactId>bcprov-jdk16</artifactId> |
| 180 | + <version>1.45</version> |
| 181 | + <scope>runtime</scope> |
| 182 | + </dependency> |
87 | 183 | </dependencies> |
88 | 184 | <build> |
89 | 185 | <defaultGoal>install</defaultGoal> |
|
96 | 192 | </excludes> |
97 | 193 | </resource> |
98 | 194 | </resources> |
| 195 | + <plugins> |
| 196 | + <plugin> |
| 197 | + <groupId>org.apache.maven.plugins</groupId> |
| 198 | + <artifactId>maven-dependency-plugin</artifactId> |
| 199 | + <version>2.5.1</version> |
| 200 | + <executions> |
| 201 | + <execution> |
| 202 | + <id>copy-dependencies</id> |
| 203 | + <phase>install</phase> |
| 204 | + <goals> |
| 205 | + <goal>copy-dependencies</goal> |
| 206 | + </goals> |
| 207 | + <configuration> |
| 208 | + <outputDirectory>../deps/awsapi-lib/rampart-lib</outputDirectory> |
| 209 | + <overWriteReleases>false</overWriteReleases> |
| 210 | + <overWriteSnapshots>false</overWriteSnapshots> |
| 211 | + <overWriteIfNewer>true</overWriteIfNewer> |
| 212 | + <includeArtifactIds>rampart-core,rampart-policy,rampart-trust,slf4j-jdk14,slf4j-api,wss4j,joda-time,xmltooling,openws,velocity,opensaml,xmlsec,bcprov-jdk16</includeArtifactIds> |
| 213 | + </configuration> |
| 214 | + </execution> |
| 215 | + <execution> |
| 216 | + <id>copy-axis2-war</id> |
| 217 | + <phase>install</phase> |
| 218 | + <goals> |
| 219 | + <goal>copy-dependencies</goal> |
| 220 | + </goals> |
| 221 | + <configuration> |
| 222 | + <outputDirectory>../deps/awsapi-lib/</outputDirectory> |
| 223 | + <overWriteReleases>false</overWriteReleases> |
| 224 | + <overWriteSnapshots>false</overWriteSnapshots> |
| 225 | + <overWriteIfNewer>true</overWriteIfNewer> |
| 226 | + <includeArtifactIds>axis2-webapp</includeArtifactIds> |
| 227 | + </configuration> |
| 228 | + </execution> |
| 229 | + <execution> |
| 230 | + <id>copy-mars</id> |
| 231 | + <phase>install</phase> |
| 232 | + <goals> |
| 233 | + <goal>copy-dependencies</goal> |
| 234 | + </goals> |
| 235 | + <configuration> |
| 236 | + <outputDirectory>../deps/awsapi-lib/modules</outputDirectory> |
| 237 | + <overWriteReleases>false</overWriteReleases> |
| 238 | + <overWriteSnapshots>false</overWriteSnapshots> |
| 239 | + <overWriteIfNewer>true</overWriteIfNewer> |
| 240 | + <includeArtifactIds>rampart,rahas</includeArtifactIds> |
| 241 | + </configuration> |
| 242 | + </execution> |
| 243 | + </executions> |
| 244 | + </plugin> |
| 245 | + </plugins> |
99 | 246 | <!-- |
100 | 247 | <testSourceDirectory>test</testSourceDirectory> |
101 | 248 | <plugins> |
|
0 commit comments