When I add 
                <dependency>
                        <groupId>org.springframework.ws</groupId>
                        <artifactId>spring-ws-security</artifactId>
                        <version>2.0.2.RELEASE</version>
                </dependency>

I get a NPE (see attached log) if I comment it out it builds fine.

Where to start on this?


--
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-                                                               -
- Jason Pyeron                      PD Inc. http://www.pdinc.us -
- Principal Consultant              10 West 24th Street #100    -
- +1 (443) 269-1555 x333            Baltimore, Maryland 21218   -
-                                                               -
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
This message is copyright PD Inc, subject to license 20080407P00.

90dcfb61683e7dc99af532fb535dc87c40ebc64e 
*lib/mvn/org/springframework/ws/spring-ws-core/2.0.2.RELEASE/spring-ws-core-2.0.2.RELEASE.jar
67f2bffb70bef84206bd48e71fc32f11695c076b 
*lib/mvn/org/springframework/ws/spring-ws-core/2.0.2.RELEASE/spring-ws-core-2.0.2.RELEASE.jar.sha1
e4737ed266d911c41d02d1562af93c247418a647 
*lib/mvn/org/springframework/ws/spring-ws-core/2.0.2.RELEASE/spring-ws-core-2.0.2.RELEASE.pom
60bef88b69b37baf7c3105587ffecaadd44bc6ae 
*lib/mvn/org/springframework/ws/spring-ws-core/2.0.2.RELEASE/spring-ws-core-2.0.2.RELEASE.pom.sha1
16efaf08d033af2d392d25c3c985bd7d35d23653 
*lib/mvn/org/springframework/ws/spring-ws-core/2.0.2.RELEASE/_maven.repositories
3d9209d5bcfe779b4310801732ba0f365379da48 
*lib/mvn/org/springframework/ws/spring-ws-parent/2.0.2.RELEASE/spring-ws-parent-2.0.2.RELEASE.pom
0d040b991b475650d4251e7346550c00e2583c4c 
*lib/mvn/org/springframework/ws/spring-ws-parent/2.0.2.RELEASE/spring-ws-parent-2.0.2.RELEASE.pom.sha1
ba9a82b2ca121e50351837302799018f0a293354 
*lib/mvn/org/springframework/ws/spring-ws-parent/2.0.2.RELEASE/_maven.repositories
f0f91f7c390cf567637c19fa1a144aa8fd22c3d5 
*lib/mvn/org/springframework/ws/spring-ws-security/2.0.2.RELEASE/spring-ws-security-2.0.2.RELEASE.pom
d9aac62f39b17a548aafd744021bd356866af8d1 
*lib/mvn/org/springframework/ws/spring-ws-security/2.0.2.RELEASE/spring-ws-security-2.0.2.RELEASE.pom.sha1
38d08feeb4e63b9c7d7917cc2d7fea317ce771b9 
*lib/mvn/org/springframework/ws/spring-ws-security/2.0.2.RELEASE/_maven.repositories
906995b0d2fd095218c050346408b3ddb7ff1859 
*lib/mvn/org/springframework/ws/spring-xml/2.0.2.RELEASE/spring-xml-2.0.2.RELEASE.jar
2d88ec5f5f1dca2f64e07cdc2d6fea28f6a23b98 
*lib/mvn/org/springframework/ws/spring-xml/2.0.2.RELEASE/spring-xml-2.0.2.RELEASE.jar.sha1
7d46d2859f72fa3daa636d8f1f46a2558581830b 
*lib/mvn/org/springframework/ws/spring-xml/2.0.2.RELEASE/spring-xml-2.0.2.RELEASE.pom
01b8d9fd4ad8b32725d35622f07a560d82fd1c46 
*lib/mvn/org/springframework/ws/spring-xml/2.0.2.RELEASE/spring-xml-2.0.2.RELEASE.pom.sha1
26c104382c6be86f3ab81533e5f9e4a91faa1810 
*lib/mvn/org/springframework/ws/spring-xml/2.0.2.RELEASE/_maven.repositories
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";>
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.carefirst.fep.local.webservices</groupId>
	<artifactId>fepl5010webServices</artifactId>
	<packaging>war</packaging>
	<version>1.0-SNAPSHOT</version>
	<name>fepl 5010 Spring-WS Application</name>
	<url>http://www.springframework.org/spring-ws</url>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>


	<build>
		<defaultGoal>verify</defaultGoal>
		<directory>out</directory>		
		<!--<finalName>fepl5010webServices</finalName>-->
		
		<plugins>
			<plugin>
				<groupId>org.jibx</groupId>
				<artifactId>maven-jibx-plugin</artifactId>
				<version>1.2.3</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-war-plugin</artifactId>
				<version>2.1.1</version>
			</plugin>
	
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-dependency-plugin</artifactId>
				<version>2.3</version>
				<executions>
					<execution>
						<goals>
							<goal>properties</goal>
						</goals>
						<!-- <phase>process-classes</phase> -->
					</execution>
				</executions>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-install-plugin</artifactId>
				<version>2.3.1</version>
				<inherited>false</inherited>
				<executions>
					<execution>
						<id>fepl-commons.jar</id>
						<goals>
							<goal>install-file</goal>
						</goals>
						<phase>validate</phase>
						<configuration>
							<file>${project.basedir}/../build/fepl-commons.jar</file>
							<groupId>com.carefirst.fep.local.commons</groupId>
							<artifactId>fepl-commons</artifactId>
							<version>1.0-SNAPSHOT</version>
							<packaging>jar</packaging>
						</configuration>
					</execution>
					<execution>
						<id>fepl-orm-persistence-defaultconfig.jar</id>
						<goals>
							<goal>install-file</goal>
						</goals>
						<phase>validate</phase>
						<configuration>
							<file>${project.basedir}/../build/fepl-orm-persistence-defaultconfig.jar</file>
							<groupId>com.carefirst.fep.local.datatier</groupId>
							<artifactId>fepl-orm-persistence-defaultconfig</artifactId>
							<version>1.0-SNAPSHOT</version>
							<packaging>jar</packaging>
						</configuration>
					</execution>

					<execution>
						<id>fepl-orm-core.jar</id>
						<goals>
							<goal>install-file</goal>
						</goals>
						<phase>validate</phase>
						<configuration>
							<file>${project.basedir}/../build/fepl-orm-core.jar</file>
							<groupId>com.carefirst.fep.local.datatier</groupId>
							<artifactId>fepl-orm-core</artifactId>
							<version>1.0-SNAPSHOT</version>
							<packaging>jar</packaging>
						</configuration>
					</execution>

					<execution>
						<id>fepl-orm-claim.jar</id>
						<goals>
							<goal>install-file</goal>
						</goals>
						<phase>validate</phase>
						<configuration>
							<file>${project.basedir}/../build/fepl-orm-claim.jar</file>
							<groupId>com.carefirst.fep.local.datatier</groupId>
							<artifactId>fepl-orm-claim</artifactId>
							<version>1.0-SNAPSHOT</version>
							<packaging>jar</packaging>
						</configuration>
					</execution>

					<execution>
						<id>fepl-orm-refdata.jar</id>
						<goals>
							<goal>install-file</goal>
						</goals>
						<phase>validate</phase>
						<configuration>
							<file>${project.basedir}/../build/fepl-orm-refdata.jar</file>
							<groupId>com.carefirst.fep.local.datatier</groupId>
							<artifactId>fepl-orm-refdata</artifactId>
							<version>1.0-SNAPSHOT</version>
							<packaging>jar</packaging>
						</configuration>
					</execution>

					<execution>
						<id>fepl-meta-model.jar</id>
						<goals>
							<goal>install-file</goal>
						</goals>
						<phase>validate</phase>
						<configuration>
							<file>${project.basedir}/../build/fepl-meta-model.jar</file>
							<groupId>com.carefirst.fep.local.datatier</groupId>
							<artifactId>fepl-meta-model</artifactId>
							<version>1.0-SNAPSHOT</version>
							<packaging>jar</packaging>
						</configuration>
					</execution>

				</executions>
			</plugin>

		</plugins>
		
		<pluginManagement>
			<plugins>

				<plugin>
					<groupId>org.jibx</groupId>
					<artifactId>maven-jibx-plugin</artifactId>
					<version>1.2.3</version>
					<configuration>
						<directory>src/main/resources</directory>
						<!-- <includes><include>*-binding.xml</include></includes> -->
						<verbose>false</verbose>
					</configuration>
					<executions>
						<execution>
							<goals>
								<goal>bind</goal>
							</goals>
							<phase>process-classes</phase>
						</execution>
					</executions>
				</plugin>


				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-war-plugin</artifactId>
					<version>2.1.1</version>
					<configuration>
						<warSourceExcludes>src/main/webapp/WEB-INF/web.xml</warSourceExcludes>
						<webXml>src/main/webapp/WEB-INF/web.xml</webXml>
					</configuration>
				</plugin>
			
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-surefire-plugin</artifactId>
					<configuration>
						<!-- <argLine>"-javaagent:${project.basedir}/lib/mvn/org/apache/openjpa/openjpa/2.1.0/openjpa-2.1.0.jar"</argLine> -->
						<!-- <argLine>-javaagent:${maven.dependency.org.apache.openjpa.openjpa.jar.path}</argLine> -->						                       
						<argLine>"-javaagent:${org.apache.openjpa:openjpa:jar}"</argLine>
					</configuration>           
				</plugin>

<!-- 				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-dependency-plugin</artifactId>
					<version>2.3</version>
					<executions>
						<execution>
							<id>build-classpath</id>
							<phase>generate-sources</phase>
							<goals>
								<goal>build-classpath</goal>
							</goals>
							<configuration>
								configure the plugin here
							</configuration>
						</execution>
					</executions>
				</plugin>
 -->
				<plugin>
					<artifactId>maven-clean-plugin</artifactId>
					<configuration>
						<excludeDefaultDirectories>true</excludeDefaultDirectories>
						<filesets>
							<fileset>							
								<directory>${project.build.directory}</directory>
								<includes>
									<include>**/*</include>
								</includes>
								<excludes>
									<exclude>classes.eclipse/**</exclude>
								</excludes>
							</fileset>
						</filesets>
					</configuration>
				</plugin> 
			</plugins>
		</pluginManagement>

	</build>




	<dependencies>

		<dependency>
			<groupId>org.apache.derby</groupId>
			<artifactId>derby</artifactId>
			<version>10.8.1.2</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>com.carefirst.fep.local.commons</groupId>
			<artifactId>fepl-commons</artifactId>
			<version>1.0-SNAPSHOT</version>
			<!-- <scope>system</scope>
			<systemPath>${project.basedir}/../build/fepl-commons.jar</systemPath> -->
		</dependency>

		<dependency>
			<groupId>com.carefirst.fep.local.datatier</groupId>
			<artifactId>fepl-orm-persistence-defaultconfig</artifactId>
			<version>1.0-SNAPSHOT</version>
			<!-- <scope>system</scope>
			<systemPath>${project.basedir}/../build/fepl-orm-persistence-defaultconfig.jar</systemPath> -->
		</dependency>

		<dependency>
			<groupId>com.carefirst.fep.local.datatier</groupId>
			<artifactId>fepl-orm-core</artifactId>
			<version>1.0-SNAPSHOT</version>
			<!-- <scope>system</scope>
			<systemPath>${project.basedir}/../build/fepl-orm-core.jar</systemPath> -->
		</dependency>

		<dependency>
			<groupId>com.carefirst.fep.local.datatier</groupId>
			<artifactId>fepl-orm-claim</artifactId>
			<version>1.0-SNAPSHOT</version>
			<!-- <scope>system</scope>
			<systemPath>${project.basedir}/../build/fepl-orm-claim.jar</systemPath> -->
		</dependency>

		<dependency>
			<groupId>com.carefirst.fep.local.datatier</groupId>
			<artifactId>fepl-orm-refdata</artifactId>
			<version>1.0-SNAPSHOT</version>
			<!-- <scope>system</scope>
			<systemPath>${project.basedir}/../build/fepl-orm-refdata.jar</systemPath> -->
		</dependency>

		<dependency>
			<groupId>com.carefirst.fep.local.datatier</groupId>
			<artifactId>fepl-meta-model</artifactId>
			<version>1.0-SNAPSHOT</version>
		</dependency>

		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-jdk14</artifactId>
			<version>1.6.0</version>
		</dependency>

		<dependency>
			<groupId>com.oracle</groupId>
			<artifactId>ojdbc6</artifactId>
			<version>11.2.0.2.0</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>org.projectlombok</groupId>
			<artifactId>lombok</artifactId>
			<version>0.10.0-RC1</version>
			<scope>provided</scope>
		</dependency>

		<dependency>
			<groupId>org.apache.openjpa</groupId>
			<artifactId>openjpa</artifactId>
			<version>2.1.0</version>
			<scope>provided</scope>
		</dependency>
		
		<dependency>
			<groupId>org.springframework.ws</groupId>
			<artifactId>spring-ws-core</artifactId>
			<version>2.0.2.RELEASE</version>
		</dependency>

		<dependency>
			<groupId>org.springframework.ws</groupId>
			<artifactId>spring-ws-security</artifactId>
			<version>2.0.2.RELEASE</version>
		</dependency>

		<dependency>
			<groupId>org.jdom</groupId>
			<artifactId>jdom</artifactId>
			<version>1.1</version>
		</dependency>
		<dependency>
			<groupId>jaxen</groupId>
			<artifactId>jaxen</artifactId>
			<version>1.1.1</version>
			<scope>runtime</scope>
			<exclusions>
				<exclusion>
					<groupId>dom4j</groupId>
					<artifactId>dom4j</artifactId>
				</exclusion>
				<exclusion>
					<groupId>jdom</groupId>
					<artifactId>jdom</artifactId>
				</exclusion>
				<exclusion>
					<groupId>xom</groupId>
					<artifactId>xom</artifactId>
				</exclusion>
				<exclusion>
					<groupId>xerces</groupId>
					<artifactId>xmlParserAPIs</artifactId>
				</exclusion>
				<exclusion>
					<groupId>xerces</groupId>
					<artifactId>xercesImpl</artifactId>
				</exclusion>
			</exclusions>
		</dependency>

		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>servlet-api</artifactId>
			<version>2.5</version>
			<scope>provided</scope>
		</dependency>

		<dependency>
			<groupId>org.jibx</groupId>
			<artifactId>jibx-ws</artifactId>
			<version>0.9.1</version>
		</dependency>

		<dependency>
			<groupId>org.jibx</groupId>
			<artifactId>jibx-run</artifactId>
			<version>1.2.3</version>
		</dependency>
		<dependency>
			<groupId>org.jibx</groupId>
			<artifactId>jibx-extras</artifactId>
			<version>1.2.3</version>
		</dependency>

		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.9b2</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>commons-beanutils</groupId>
			<artifactId>commons-beanutils</artifactId>
			<version>1.8.3</version>
		</dependency>

	</dependencies>



</project>

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to