Skip to content

Commit efd8b11

Browse files
committed
1.0 release
1 parent ee0dc54 commit efd8b11

File tree

1 file changed

+85
-71
lines changed

1 file changed

+85
-71
lines changed

pom.xml

Lines changed: 85 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,93 @@
11

22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4-
<modelVersion>4.0.0</modelVersion>
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
55

6-
<groupId>jqplot</groupId>
7-
<artifactId>jqplot4java</artifactId>
8-
<version>1.0-SNAPSHOT</version>
9-
<packaging>jar</packaging>
6+
<groupId>jqplot</groupId>
7+
<artifactId>jqplot4java</artifactId>
8+
<version>1.0</version>
9+
<packaging>jar</packaging>
1010

11-
<name>jqplot4java</name>
12-
<url>http://maven.apache.org</url>
11+
<name>jqplot4java</name>
12+
<url>http://maven.apache.org</url>
1313

14-
<properties>
15-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16-
</properties>
14+
<licenses>
15+
<license>
16+
<name>The Apache Software License, Version 2.0</name>
17+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
18+
<distribution>repo</distribution>
19+
</license>
20+
</licenses>
1721

18-
<dependencies>
19-
<dependency>
20-
<groupId>junit</groupId>
21-
<artifactId>junit</artifactId>
22-
<version>3.8.1</version>
23-
<scope>test</scope>
24-
</dependency>
25-
<dependency>
26-
<groupId>com.thoughtworks.xstream</groupId>
27-
<artifactId>xstream</artifactId>
28-
<version>1.4.2</version>
29-
</dependency>
30-
</dependencies>
31-
32-
<build>
33-
<resources>
34-
<resource>
35-
<filtering>false</filtering>
36-
<directory>src/main/resources</directory>
37-
</resource>
38-
<resource>
39-
<filtering>false</filtering>
40-
<directory>src/main/java</directory>
41-
<includes>
42-
<include>**</include>
43-
</includes>
44-
<excludes>
45-
<exclude>**/*.java</exclude>
46-
</excludes>
47-
</resource>
48-
</resources>
49-
<testResources>
50-
<testResource>
51-
<filtering>false</filtering>
52-
<directory>src/test/java</directory>
53-
<includes>
54-
<include>**</include>
55-
</includes>
56-
<excludes>
57-
<exclude>**/*.java</exclude>
58-
</excludes>
59-
</testResource>
60-
</testResources>
61-
<plugins>
62-
<plugin>
63-
<inherited>true</inherited>
64-
<groupId>org.apache.maven.plugins</groupId>
65-
<artifactId>maven-compiler-plugin</artifactId>
66-
<version>2.3.2</version>
67-
<configuration>
68-
<source>1.5</source>
69-
<target>1.5</target>
70-
<optimize>true</optimize>
71-
<debug>true</debug>
72-
<outputEncoding>UTF-8</outputEncoding>
73-
<encoding>UTF-8</encoding>
74-
</configuration>
75-
</plugin>
76-
</plugins>
77-
</build>
22+
<properties>
23+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24+
<xstream.version>1.4.2</xstream.version>
25+
</properties>
7826

27+
<dependencies>
28+
<dependency>
29+
<groupId>junit</groupId>
30+
<artifactId>junit</artifactId>
31+
<version>4.10</version>
32+
<scope>test</scope>
33+
</dependency>
34+
<dependency>
35+
<groupId>com.thoughtworks.xstream</groupId>
36+
<artifactId>xstream</artifactId>
37+
<version>${xstream.version}</version>
38+
</dependency>
39+
</dependencies>
40+
41+
<build>
42+
<resources>
43+
<resource>
44+
<filtering>false</filtering>
45+
<directory>src/main/resources</directory>
46+
</resource>
47+
<resource>
48+
<filtering>false</filtering>
49+
<directory>src/main/java</directory>
50+
<includes>
51+
<include>**</include>
52+
</includes>
53+
<excludes>
54+
<exclude>**/*.java</exclude>
55+
</excludes>
56+
</resource>
57+
</resources>
58+
<testResources>
59+
<testResource>
60+
<filtering>false</filtering>
61+
<directory>src/test/java</directory>
62+
<includes>
63+
<include>**</include>
64+
</includes>
65+
<excludes>
66+
<exclude>**/*.java</exclude>
67+
</excludes>
68+
</testResource>
69+
</testResources>
70+
<plugins>
71+
<plugin>
72+
<inherited>true</inherited>
73+
<groupId>org.apache.maven.plugins</groupId>
74+
<artifactId>maven-compiler-plugin</artifactId>
75+
<version>2.3.2</version>
76+
<configuration>
77+
<source>1.5</source>
78+
<target>1.5</target>
79+
<optimize>true</optimize>
80+
<debug>true</debug>
81+
<outputEncoding>UTF-8</outputEncoding>
82+
<encoding>UTF-8</encoding>
83+
</configuration>
84+
</plugin>
85+
</plugins>
86+
</build>
87+
88+
<organization>
89+
<name>Inaiat Henrique</name>
90+
<url>[email protected]</url>
91+
</organization>
92+
<description>This project provides a Java library for utilizing JqPlot Pure Javascript (http://www.jqplot.com/).</description>
7993
</project>

0 commit comments

Comments
 (0)