|
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/xsd/maven-4.0.0.xsd"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
4 | 4 |
|
5 | | - <artifactId>cf-java-logging-support-jersey</artifactId> |
6 | | - <packaging>jar</packaging> |
| 5 | + <artifactId>cf-java-logging-support-jersey</artifactId> |
| 6 | + <packaging>jar</packaging> |
7 | 7 |
|
8 | | - <parent> |
9 | | - <relativePath>../pom.xml</relativePath> |
10 | | - <groupId>com.sap.hcp.cf.logging</groupId> |
11 | | - <artifactId>cf-java-logging-support-parent</artifactId> |
12 | | - <version>3.0.2</version> |
13 | | - </parent> |
| 8 | + <parent> |
| 9 | + <relativePath>../pom.xml</relativePath> |
| 10 | + <groupId>com.sap.hcp.cf.logging</groupId> |
| 11 | + <artifactId>cf-java-logging-support-parent</artifactId> |
| 12 | + <version>3.0.3</version> |
| 13 | + </parent> |
14 | 14 |
|
15 | | - <name>cf-java-logging-support-jersey</name> |
| 15 | + <name>cf-java-logging-support-jersey</name> |
16 | 16 |
|
17 | | - <properties> |
18 | | - <jersey.version>2.22.1</jersey.version> |
19 | | - </properties> |
| 17 | + <properties> |
| 18 | + <jersey.version>2.22.1</jersey.version> |
| 19 | + </properties> |
20 | 20 |
|
21 | | - <dependencies> |
22 | | - <!-- Jersey - RESTful Web service --> |
23 | | - <dependency> |
24 | | - <groupId>org.glassfish.jersey.core</groupId> |
25 | | - <artifactId>jersey-client</artifactId> |
26 | | - <version>${jersey.version}</version> |
27 | | - <scope>provided</scope> |
28 | | - </dependency> |
| 21 | + <dependencies> |
| 22 | + <!-- Jersey - RESTful Web service --> |
| 23 | + <dependency> |
| 24 | + <groupId>org.glassfish.jersey.core</groupId> |
| 25 | + <artifactId>jersey-client</artifactId> |
| 26 | + <version>${jersey.version}</version> |
| 27 | + <scope>provided</scope> |
| 28 | + </dependency> |
29 | 29 |
|
30 | | - <dependency> |
31 | | - <groupId>org.glassfish.jersey.core</groupId> |
32 | | - <artifactId>jersey-server</artifactId> |
33 | | - <version>${jersey.version}</version> |
34 | | - <scope>provided</scope> |
35 | | - </dependency> |
| 30 | + <dependency> |
| 31 | + <groupId>org.glassfish.jersey.core</groupId> |
| 32 | + <artifactId>jersey-server</artifactId> |
| 33 | + <version>${jersey.version}</version> |
| 34 | + <scope>provided</scope> |
| 35 | + </dependency> |
36 | 36 |
|
37 | | - <dependency> |
38 | | - <groupId>com.sap.hcp.cf.logging</groupId> |
39 | | - <artifactId>cf-java-logging-support-core</artifactId> |
40 | | - <version>${project.version}</version> |
41 | | - <scope>compile</scope> |
42 | | - </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>com.sap.hcp.cf.logging</groupId> |
| 39 | + <artifactId>cf-java-logging-support-core</artifactId> |
| 40 | + <version>${project.version}</version> |
| 41 | + <scope>compile</scope> |
| 42 | + </dependency> |
43 | 43 |
|
44 | | - <!-- unit test related --> |
45 | | - <dependency> |
46 | | - <groupId>org.glassfish.jersey.test-framework</groupId> |
47 | | - <artifactId>jersey-test-framework-core</artifactId> |
48 | | - <version>${jersey.version}</version> |
49 | | - <scope>test</scope> |
50 | | - </dependency> |
| 44 | + <!-- unit test related --> |
| 45 | + <dependency> |
| 46 | + <groupId>org.glassfish.jersey.test-framework</groupId> |
| 47 | + <artifactId>jersey-test-framework-core</artifactId> |
| 48 | + <version>${jersey.version}</version> |
| 49 | + <scope>test</scope> |
| 50 | + </dependency> |
51 | 51 |
|
52 | | - <dependency> |
53 | | - <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
54 | | - <artifactId>jersey-test-framework-provider-grizzly2</artifactId> |
55 | | - <version>${jersey.version}</version> |
56 | | - <scope>test</scope> |
57 | | - </dependency> |
58 | | - <!-- we need our log4j2 implementation for testing! --> |
59 | | - <dependency> |
60 | | - <groupId>com.sap.hcp.cf.logging</groupId> |
61 | | - <artifactId>cf-java-logging-support-log4j2</artifactId> |
62 | | - <version>${project.version}</version> |
63 | | - <scope>test</scope> |
64 | | - </dependency> |
65 | | - <dependency> |
66 | | - <groupId>org.apache.logging.log4j</groupId> |
67 | | - <artifactId>log4j-slf4j-impl</artifactId> |
68 | | - <version>${log4j2.version}</version> |
69 | | - <scope>test</scope> |
70 | | - </dependency> |
71 | | - <dependency> |
72 | | - <groupId>org.apache.logging.log4j</groupId> |
73 | | - <artifactId>log4j-core</artifactId> |
74 | | - <version>${log4j2.version}</version> |
75 | | - <scope>test</scope> |
76 | | - </dependency> |
77 | | - </dependencies> |
| 52 | + <dependency> |
| 53 | + <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 54 | + <artifactId>jersey-test-framework-provider-grizzly2</artifactId> |
| 55 | + <version>${jersey.version}</version> |
| 56 | + <scope>test</scope> |
| 57 | + </dependency> |
| 58 | + |
| 59 | + <dependency> |
| 60 | + <groupId>javax.xml.bind</groupId> |
| 61 | + <artifactId>jaxb-api</artifactId> |
| 62 | + <version>2.2.8</version> |
| 63 | + <scope>test</scope> |
| 64 | + </dependency> |
| 65 | + <dependency> |
| 66 | + <groupId>com.sun.xml.bind</groupId> |
| 67 | + <artifactId>jaxb-core</artifactId> |
| 68 | + <version>2.2.11</version> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>com.sun.xml.bind</groupId> |
| 73 | + <artifactId>jaxb-impl</artifactId> |
| 74 | + <version>2.2.11</version> |
| 75 | + <scope>test</scope> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>javax.activation</groupId> |
| 79 | + <artifactId>activation</artifactId> |
| 80 | + <version>1.1.1</version> |
| 81 | + <scope>test</scope> |
| 82 | + </dependency> |
| 83 | + <!-- we need our log4j2 implementation for testing! --> |
| 84 | + <dependency> |
| 85 | + <groupId>com.sap.hcp.cf.logging</groupId> |
| 86 | + <artifactId>cf-java-logging-support-log4j2</artifactId> |
| 87 | + <version>${project.version}</version> |
| 88 | + <scope>test</scope> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>org.apache.logging.log4j</groupId> |
| 92 | + <artifactId>log4j-slf4j-impl</artifactId> |
| 93 | + <version>${log4j2.version}</version> |
| 94 | + <scope>test</scope> |
| 95 | + </dependency> |
| 96 | + <dependency> |
| 97 | + <groupId>org.apache.logging.log4j</groupId> |
| 98 | + <artifactId>log4j-core</artifactId> |
| 99 | + <version>${log4j2.version}</version> |
| 100 | + <scope>test</scope> |
| 101 | + </dependency> |
| 102 | + </dependencies> |
78 | 103 | </project> |
0 commit comments