Skip to content

Commit a3d468d

Browse files
committed
Summary: No more copy-dependencies for awsapi
This was also required for package building using ant/waf and should be completely replaced with the war build in maven.
1 parent 1a7c942 commit a3d468d

1 file changed

Lines changed: 4 additions & 50 deletions

File tree

awsapi/pom.xml

Lines changed: 4 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,10 @@
262262
<build>
263263
<defaultGoal>install</defaultGoal>
264264
<sourceDirectory>src</sourceDirectory>
265+
<!-- Tests still depend on hibernate,
266+
so thats not going to work
267+
<testSourceDirectory>test</testSourceDirectory>
268+
-->
265269
<resources>
266270
<resource>
267271
<directory>src</directory>
@@ -274,55 +278,6 @@
274278
</resource>
275279
</resources>
276280
<plugins>
277-
<plugin>
278-
<groupId>org.apache.maven.plugins</groupId>
279-
<artifactId>maven-dependency-plugin</artifactId>
280-
<version>2.5.1</version>
281-
<executions>
282-
<execution>
283-
<id>copy-dependencies</id>
284-
<phase>install</phase>
285-
<goals>
286-
<goal>copy-dependencies</goal>
287-
</goals>
288-
<configuration>
289-
<outputDirectory>../deps/awsapi-lib/rampart-lib</outputDirectory>
290-
<overWriteReleases>false</overWriteReleases>
291-
<overWriteSnapshots>false</overWriteSnapshots>
292-
<overWriteIfNewer>true</overWriteIfNewer>
293-
<includeArtifactIds>rampart-core,rampart-policy,rampart-trust,slf4j-jdk14,slf4j-api,wss4j,joda-time,xmltooling,openws,velocity,opensaml,xmlsec,bcprov-jdk16</includeArtifactIds>
294-
</configuration>
295-
</execution>
296-
<execution>
297-
<id>copy-axis2-war</id>
298-
<phase>install</phase>
299-
<goals>
300-
<goal>copy-dependencies</goal>
301-
</goals>
302-
<configuration>
303-
<outputDirectory>../deps/awsapi-lib/</outputDirectory>
304-
<overWriteReleases>false</overWriteReleases>
305-
<overWriteSnapshots>false</overWriteSnapshots>
306-
<overWriteIfNewer>true</overWriteIfNewer>
307-
<includeArtifactIds>axis2-webapp</includeArtifactIds>
308-
</configuration>
309-
</execution>
310-
<execution>
311-
<id>copy-mars</id>
312-
<phase>install</phase>
313-
<goals>
314-
<goal>copy-dependencies</goal>
315-
</goals>
316-
<configuration>
317-
<outputDirectory>../deps/awsapi-lib/modules</outputDirectory>
318-
<overWriteReleases>false</overWriteReleases>
319-
<overWriteSnapshots>false</overWriteSnapshots>
320-
<overWriteIfNewer>true</overWriteIfNewer>
321-
<includeArtifactIds>rampart,rahas</includeArtifactIds>
322-
</configuration>
323-
</execution>
324-
</executions>
325-
</plugin>
326281
<plugin>
327282
<groupId>org.mortbay.jetty</groupId>
328283
<artifactId>maven-jetty-plugin</artifactId>
@@ -341,7 +296,6 @@
341296
</plugin>
342297
</plugins>
343298
<!--
344-
<testSourceDirectory>test</testSourceDirectory>
345299
<plugins>
346300
<plugin>
347301
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)