-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpom.xml
156 lines (156 loc) · 4.76 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<?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>
<groupId>net.sourceforge.jweather</groupId>
<artifactId>jweather</artifactId>
<version>0.3.1-SNAPSHOT</version>
<name>jweather</name>
<description>jweather is a Java library for parsing raw weather data (e.g. METAR, TAF).
Initially it will focus on parsing and providing an API for access to METAR
data, but may grow to include access to multiple reporting formats.</description>
<url>http://jweather.sourceforge.net/</url>
<inceptionYear>2003</inceptionYear>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>3</version>
</parent>
<organization>
<name>jWeather SourceForge Project</name>
<url>http://jweather.sourceforge.net/</url>
</organization>
<developers>
<developer>
<id>arimus</id>
<name>David Castro</name>
<email>[email protected]</email>
<organization />
<roles>
<role>Project Founder</role>
<role>Lead Developer</role>
</roles>
</developer>
<developer>
<id>DennisKeller</id>
<name>Dennis Keller</name>
<email>[email protected]</email>
<organization>Bullamanka.com</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>BrianClasky</id>
<name>Brian Clasky</name>
<email>[email protected]</email>
<organization />
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:svn:https://jweather.svn.sourceforge.net/svnroot/jweather/trunk/</connection>
<url>http://jweather.svn.sourceforge.net/viewvc/jweather/</url>
<developerConnection>scm:svn:https://jweather.svn.sourceforge.net/svnroot/jweather/trunk/</developerConnection>
</scm>
<issueManagement>
<url>http://sourceforge.net/tracker/?atid=607846&group_id=94418&func=browse</url>
</issueManagement>
<ciManagement>
<notifiers>
<notifier>
<configuration>
<address>[email protected]</address>
</configuration>
</notifier>
</notifiers>
</ciManagement>
<distributionManagement>
<site>
<id>default</id>
<name>Default Site</name>
<url>scp://sourceforge.net/projects/jweather/</url>
</site>
</distributionManagement>
<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.8</version>
</dependency>
<dependency>
<groupId>oro</groupId>
<artifactId>oro</artifactId>
<version>2.0.7</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>2.0</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>src</testSourceDirectory>
<resources>
<resource>
<directory>${basedir}/properties</directory>
<includes>
<include>*</include>
</includes>
</resource>
<resource>
<directory>${basedir}</directory>
<includes>
<include>LICENSE</include>
<include>LICENSE_log4j</include>
<include>LICENSE_oro</include>
<include>LICENSE_junit</include>
<include>README</include>
<include>INFO</include>
<include>TODO</include>
<include>Changelog</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
<includes>
<include>**/MetarTest.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<artifactId>maven-changes-plugin</artifactId>
<version>2.3</version>
<inherited>false</inherited>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
<configuration>
<issueLinkTemplate>http://sourceforge.net/support/tracker.php?aid=%ISSUE%</issueLinkTemplate>
</configuration>
</plugin>
</plugins>
</reporting>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>