Last active
December 14, 2016 13:58
-
-
Save Gobliins/a63f293001003a9cb4b61a87337c3f2e to your computer and use it in GitHub Desktop.
unmarshaller is null and JavaCryptoValidationInitializer class is not existing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>my.company</groupId> | |
| <artifactId>MavenOpenSaml3Test</artifactId> | |
| <version>0.0.1-SNAPSHOT</version> | |
| <name>MavenOpenSaml3Test</name> | |
| <url>http://maven.apache.org</url> | |
| <properties> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| </properties> | |
| <dependencies> | |
| <dependency> | |
| <groupId>junit</groupId> | |
| <artifactId>junit</artifactId> | |
| <version>3.8.1</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.opensaml</groupId> | |
| <artifactId>opensaml-core</artifactId> | |
| <version>3.3.0</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.opensaml</groupId> | |
| <artifactId>opensaml-messaging-api</artifactId> | |
| <version>3.3.0</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.opensaml</groupId> | |
| <artifactId>opensaml-profile-api</artifactId> | |
| <version>3.3.0</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.opensaml</groupId> | |
| <artifactId>opensaml-saml-api</artifactId> | |
| <version>3.3.0</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.opensaml</groupId> | |
| <artifactId>opensaml-security-api</artifactId> | |
| <version>3.3.0</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.opensaml</groupId> | |
| <artifactId>opensaml-soap-api</artifactId> | |
| <version>3.3.0</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.opensaml</groupId> | |
| <artifactId>opensaml-storage-api</artifactId> | |
| <version>3.3.0</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.opensaml</groupId> | |
| <artifactId>opensaml-xmlsec-api</artifactId> | |
| <version>3.3.0</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| </dependencies> | |
| <repositories> | |
| <repository> | |
| <id>shibboleth</id> | |
| <name>Public online Restlet repository</name> | |
| <url>https://shibboleth.net/nexus/content/groups/public</url> | |
| </repository> | |
| <repository> | |
| <snapshots> | |
| <enabled>false</enabled> | |
| </snapshots> | |
| <id>central</id> | |
| <name>Central Repository</name> | |
| <url>https://repo.maven.apache.org/maven2</url> | |
| </repository> | |
| </repositories> | |
| <pluginRepositories> | |
| <pluginRepository> | |
| <releases> | |
| <updatePolicy>never</updatePolicy> | |
| </releases> | |
| <snapshots> | |
| <enabled>false</enabled> | |
| </snapshots> | |
| <id>central</id> | |
| <name>Central Repository</name> | |
| <url>https://repo.maven.apache.org/maven2</url> | |
| </pluginRepository> | |
| </pluginRepositories> | |
| <build> | |
| <sourceDirectory>z:\\MavenOpenSaml3Test\src\main\java</sourceDirectory> | |
| <scriptSourceDirectory>z:\\MavenOpenSaml3Test\src\main\scripts</scriptSourceDirectory> | |
| <testSourceDirectory>z:\\MavenOpenSaml3Test\src\test\java</testSourceDirectory> | |
| <outputDirectory>z:\\MavenOpenSaml3Test\target\classes</outputDirectory> | |
| <testOutputDirectory>z:\\MavenOpenSaml3Test\target\test-classes</testOutputDirectory> | |
| <resources> | |
| <resource> | |
| <directory>z:\\MavenOpenSaml3Test\src\main\resources</directory> | |
| </resource> | |
| </resources> | |
| <testResources> | |
| <testResource> | |
| <directory>z:\\MavenOpenSaml3Test\src\test\resources</directory> | |
| </testResource> | |
| </testResources> | |
| <directory>z:\\MavenOpenSaml3Test\target</directory> | |
| <finalName>MavenOpenSaml3Test-0.0.1-SNAPSHOT</finalName> | |
| <pluginManagement> | |
| <plugins> | |
| <plugin> | |
| <artifactId>maven-antrun-plugin</artifactId> | |
| <version>1.3</version> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-assembly-plugin</artifactId> | |
| <version>2.2-beta-5</version> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-dependency-plugin</artifactId> | |
| <version>2.8</version> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-release-plugin</artifactId> | |
| <version>2.3.2</version> | |
| </plugin> | |
| </plugins> | |
| </pluginManagement> | |
| <plugins> | |
| <plugin> | |
| <artifactId>maven-clean-plugin</artifactId> | |
| <version>2.5</version> | |
| <executions> | |
| <execution> | |
| <id>default-clean</id> | |
| <phase>clean</phase> | |
| <goals> | |
| <goal>clean</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-resources-plugin</artifactId> | |
| <version>2.6</version> | |
| <executions> | |
| <execution> | |
| <id>default-testResources</id> | |
| <phase>process-test-resources</phase> | |
| <goals> | |
| <goal>testResources</goal> | |
| </goals> | |
| </execution> | |
| <execution> | |
| <id>default-resources</id> | |
| <phase>process-resources</phase> | |
| <goals> | |
| <goal>resources</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-jar-plugin</artifactId> | |
| <version>2.4</version> | |
| <executions> | |
| <execution> | |
| <id>default-jar</id> | |
| <phase>package</phase> | |
| <goals> | |
| <goal>jar</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>3.1</version> | |
| <executions> | |
| <execution> | |
| <id>default-compile</id> | |
| <phase>compile</phase> | |
| <goals> | |
| <goal>compile</goal> | |
| </goals> | |
| </execution> | |
| <execution> | |
| <id>default-testCompile</id> | |
| <phase>test-compile</phase> | |
| <goals> | |
| <goal>testCompile</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-surefire-plugin</artifactId> | |
| <version>2.12.4</version> | |
| <executions> | |
| <execution> | |
| <id>default-test</id> | |
| <phase>test</phase> | |
| <goals> | |
| <goal>test</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-install-plugin</artifactId> | |
| <version>2.4</version> | |
| <executions> | |
| <execution> | |
| <id>default-install</id> | |
| <phase>install</phase> | |
| <goals> | |
| <goal>install</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-deploy-plugin</artifactId> | |
| <version>2.7</version> | |
| <executions> | |
| <execution> | |
| <id>default-deploy</id> | |
| <phase>deploy</phase> | |
| <goals> | |
| <goal>deploy</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-site-plugin</artifactId> | |
| <version>3.3</version> | |
| <executions> | |
| <execution> | |
| <id>default-site</id> | |
| <phase>site</phase> | |
| <goals> | |
| <goal>site</goal> | |
| </goals> | |
| <configuration> | |
| <outputDirectory>z:\\MavenOpenSaml3Test\target\site</outputDirectory> | |
| <reportPlugins> | |
| <reportPlugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-project-info-reports-plugin</artifactId> | |
| </reportPlugin> | |
| </reportPlugins> | |
| </configuration> | |
| </execution> | |
| <execution> | |
| <id>default-deploy</id> | |
| <phase>site-deploy</phase> | |
| <goals> | |
| <goal>deploy</goal> | |
| </goals> | |
| <configuration> | |
| <outputDirectory>z:\\MavenOpenSaml3Test\target\site</outputDirectory> | |
| <reportPlugins> | |
| <reportPlugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-project-info-reports-plugin</artifactId> | |
| </reportPlugin> | |
| </reportPlugins> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| <configuration> | |
| <outputDirectory>z:\\MavenOpenSaml3Test\target\site</outputDirectory> | |
| <reportPlugins> | |
| <reportPlugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-project-info-reports-plugin</artifactId> | |
| </reportPlugin> | |
| </reportPlugins> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| <reporting> | |
| <outputDirectory>z:\\MavenOpenSaml3Test\target\site</outputDirectory> | |
| </reporting> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment