-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
130 lines (120 loc) · 3.46 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>farsight-wm</groupId>
<artifactId>wm-parent</artifactId>
<version>10.5.0</version>
<relativePath>../wm-parent/pom.xml</relativePath>
</parent>
<artifactId>logging</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>farsight-wm-logging</name>
<description>Logging framework for webMethods</description>
<url>https://github.com/farsight-wm/logging</url>
<issueManagement>
<url>https://github.com/farsight-wm/logging/issues</url>
<system>GitHub.com</system>
</issueManagement>
<scm>
<url>https://github.com/farsight-wm/logging</url>
<connection>scm:git:https://github.com/farsight-wm/logging.git</connection>
<developerConnection>scm:git:https://github.com/farsight-wm/logging.git</developerConnection>
<tag>HEAD</tag>
</scm>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>manual</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Cornelius Wicke</name>
<url>https://www.xing.com/profile/Cornelius_Wicke</url>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>farsight-wm</groupId>
<artifactId>utils</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>farsight-wm</groupId>
<artifactId>logging-log4jplugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.softwareag.webmethods</groupId>
<artifactId>wm-isclient</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.softwareag.webmethods</groupId>
<artifactId>wm-isserver</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- plugin to build is package -->
<plugin>
<groupId>farsight-wm</groupId>
<artifactId>is-package-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>is-package</goal>
</goals>
<configuration>
<packages>
<package>
<name>FarsightWmLogging</name>
<jars>
<jar>
<id>farsight-wm:utils</id>
</jar>
<jar>
<id>farsight-wm:logging-log4jplugin</id>
</jar>
<jar>
<id>farsight-wm:logging</id>
</jar>
</jars>
</package>
</packages>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>