|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | | - <groupId>com.onelogin</groupId> |
5 | | - <artifactId>java-saml</artifactId> |
6 | | - <version>2.0.0</version> |
| 4 | + <parent> |
| 5 | + <groupId>com.onelogin</groupId> |
| 6 | + <artifactId>java-saml-toolkit</artifactId> |
| 7 | + <version>2.0.0-SNAPSHOT</version> |
| 8 | + </parent> |
| 9 | + |
7 | 10 | <packaging>jar</packaging> |
8 | | - <name>Onelogin java-saml Toolkit</name> |
| 11 | + <name>Onelogin java-saml Toolkit Core</name> |
| 12 | + <artifactId>java-saml-tookit-core</artifactId> |
9 | 13 |
|
10 | 14 | <properties> |
11 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
35 | 39 | <scope>test</scope> |
36 | 40 | </dependency> |
37 | 41 | <dependency> |
38 | | - <groupId>org.powermock</groupId> |
39 | | - <artifactId>powermock-module-javaagent</artifactId> |
40 | | - <version>1.6.0</version> |
41 | | - <scope>test</scope> |
| 42 | + <groupId>org.powermock</groupId> |
| 43 | + <artifactId>powermock-module-javaagent</artifactId> |
| 44 | + <version>1.6.0</version> |
| 45 | + <scope>test</scope> |
42 | 46 | </dependency> |
43 | 47 | <dependency> |
44 | | - <groupId>org.powermock</groupId> |
45 | | - <artifactId>powermock-module-junit4-rule-agent</artifactId> |
46 | | - <version>1.6.4</version> |
47 | | - <scope>test</scope> |
| 48 | + <groupId>org.powermock</groupId> |
| 49 | + <artifactId>powermock-module-junit4-rule-agent</artifactId> |
| 50 | + <version>1.6.4</version> |
| 51 | + <scope>test</scope> |
48 | 52 | </dependency> |
49 | 53 |
|
50 | 54 | <!-- for log --> |
|
87 | 91 | </dependencies> |
88 | 92 |
|
89 | 93 | <build> |
90 | | - <finalName>java-saml-toolkit</finalName> |
91 | | - <plugins> |
92 | | - <plugin> |
93 | | - <groupId>org.jacoco</groupId> |
94 | | - <artifactId>jacoco-maven-plugin</artifactId> |
95 | | - <version>0.7.6.201602180812</version> |
96 | | - <configuration> |
97 | | - <propertyName>jacoco.agent.argLine</propertyName> |
98 | | - </configuration> |
99 | | - <executions> |
100 | | - <execution> |
101 | | - <id>prepare-agent</id> |
102 | | - <goals> |
103 | | - <goal>prepare-agent</goal> |
104 | | - </goals> |
105 | | - </execution> |
106 | | - </executions> |
107 | | - </plugin> |
108 | | - <plugin> |
109 | | - <groupId>org.apache.maven.plugins</groupId> |
110 | | - <artifactId>maven-surefire-plugin</artifactId> |
111 | | - <version>2.12</version> |
112 | | - <configuration> |
113 | | - <argLine>-XX:-UseSplitVerifier ${jacoco.agent.argLine}</argLine> |
114 | | - </configuration> |
115 | | - </plugin> |
116 | | - <plugin> |
117 | | - <groupId>org.apache.maven.plugins</groupId> |
118 | | - <artifactId>maven-compiler-plugin</artifactId> |
119 | | - <version>3.0</version> |
120 | | - <configuration> |
121 | | - <source>1.7</source> |
122 | | - <target>1.7</target> |
123 | | - </configuration> |
124 | | - </plugin> |
125 | | - </plugins> |
126 | | - </build> |
| 94 | + <plugins> |
| 95 | + <plugin> |
| 96 | + <groupId>org.jacoco</groupId> |
| 97 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 98 | + <version>0.7.6.201602180812</version> |
| 99 | + <configuration> |
| 100 | + <propertyName>jacoco.agent.argLine</propertyName> |
| 101 | + </configuration> |
| 102 | + <executions> |
| 103 | + <execution> |
| 104 | + <id>prepare-agent</id> |
| 105 | + <goals> |
| 106 | + <goal>prepare-agent</goal> |
| 107 | + </goals> |
| 108 | + </execution> |
| 109 | + </executions> |
| 110 | + </plugin> |
| 111 | + <plugin> |
| 112 | + <groupId>org.apache.maven.plugins</groupId> |
| 113 | + <artifactId>maven-surefire-plugin</artifactId> |
| 114 | + <version>2.12</version> |
| 115 | + <configuration> |
| 116 | + <argLine>-XX:-UseSplitVerifier ${jacoco.agent.argLine}</argLine> |
| 117 | + </configuration> |
| 118 | + </plugin> |
| 119 | + </plugins> |
| 120 | + </build> |
127 | 121 | </project> |
0 commit comments