Skip to content

Commit c848058

Browse files
committed
Send project to central
1 parent 0d22753 commit c848058

File tree

2 files changed

+170
-5
lines changed

2 files changed

+170
-5
lines changed

base/pom.xml

Lines changed: 85 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,98 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
6-
<groupId>com.panayotis.javaplot</groupId>
6+
<groupId>com.panayotis</groupId>
77
<artifactId>javaplot</artifactId>
88
<version>0.5.0</version>
99
<name>JavaPlot</name>
10+
<description>JavaPlot is a pure Java programming interface library for GNUPlot. It can be used as a way to create gnuplot plots on the fly through pure Java commands.</description>
11+
<url>http://javaplot.panayotis.com</url>
12+
1013
<licenses>
1114
<license>
1215
<name>GNU Lesser General Public License, Version 2</name>
1316
<url>https://www.gnu.org/licenses/lgpl-2.0.html</url>
1417
</license>
1518
</licenses>
16-
<url>http://javaplot.panayotis.com</url>
17-
<description>JavaPlot is a pure Java programming interface library for GNUPlot. It can be used as a way to create gnuplot plots on the fly through pure Java commands.</description>
19+
20+
<developers>
21+
<developer>
22+
<name>Panayotis Katsaloulis</name>
23+
<email>[email protected]</email>
24+
<organizationUrl>http://www.panayotis.com</organizationUrl>
25+
</developer>
26+
</developers>
27+
28+
<scm>
29+
<connection>scm:git:git://github.com/teras/JavaPlot.git</connection>
30+
<developerConnection>scm:git:ssh://github.com/teras/JavaPlot.git</developerConnection>
31+
<url>http://github.com/teras/JavaPlot/tree/master</url>
32+
</scm>
33+
34+
<distributionManagement>
35+
<snapshotRepository>
36+
<id>ossrh</id>
37+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
38+
</snapshotRepository>
39+
</distributionManagement>
40+
41+
<build>
42+
<plugins>
43+
<plugin>
44+
<groupId>org.sonatype.plugins</groupId>
45+
<artifactId>nexus-staging-maven-plugin</artifactId>
46+
<version>1.6.7</version>
47+
<extensions>true</extensions>
48+
<configuration>
49+
<serverId>ossrh</serverId>
50+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
51+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
52+
</configuration>
53+
</plugin>
54+
<plugin>
55+
<groupId>org.apache.maven.plugins</groupId>
56+
<artifactId>maven-source-plugin</artifactId>
57+
<version>2.2.1</version>
58+
<executions>
59+
<execution>
60+
<id>attach-sources</id>
61+
<goals>
62+
<goal>jar-no-fork</goal>
63+
</goals>
64+
</execution>
65+
</executions>
66+
</plugin>
67+
<plugin>
68+
<groupId>org.apache.maven.plugins</groupId>
69+
<artifactId>maven-javadoc-plugin</artifactId>
70+
<version>2.9.1</version>
71+
<executions>
72+
<execution>
73+
<id>attach-javadocs</id>
74+
<goals>
75+
<goal>jar</goal>
76+
</goals>
77+
</execution>
78+
</executions>
79+
</plugin>
80+
<plugin>
81+
<groupId>org.apache.maven.plugins</groupId>
82+
<artifactId>maven-gpg-plugin</artifactId>
83+
<version>1.5</version>
84+
<executions>
85+
<execution>
86+
<id>sign-artifacts</id>
87+
<phase>verify</phase>
88+
<goals>
89+
<goal>sign</goal>
90+
</goals>
91+
</execution>
92+
</executions>
93+
</plugin>
94+
</plugins>
95+
</build>
96+
97+
<properties>
98+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
99+
</properties>
18100
</project>

svg/pom.xml

Lines changed: 85 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
<artifactId>svg</artifactId>
88
<version>0.5.0</version>
99
<name>JavaPlot SVG</name>
10+
<description>JavaPlot is a pure Java programming interface library for GNUPlot. It can be used as a way to create gnuplot plots on the fly through pure Java commands.</description>
11+
<url>http://javaplot.panayotis.com</url>
12+
1013
<dependencies>
1114
<dependency>
1215
<groupId>com.panayotis</groupId>
@@ -19,12 +22,92 @@
1922
<version>1.0</version>
2023
</dependency>
2124
</dependencies>
25+
2226
<licenses>
2327
<license>
2428
<name>GNU Lesser General Public License, Version 2</name>
2529
<url>https://www.gnu.org/licenses/lgpl-2.0.html</url>
2630
</license>
2731
</licenses>
28-
<url>http://javaplot.panayotis.com</url>
29-
<description>JavaPlot is a pure Java programming interface library for GNUPlot. It can be used as a way to create gnuplot plots on the fly through pure Java commands.</description>
32+
33+
<developers>
34+
<developer>
35+
<name>Panayotis Katsaloulis</name>
36+
<email>[email protected]</email>
37+
<organizationUrl>http://www.panayotis.com</organizationUrl>
38+
</developer>
39+
</developers>
40+
41+
<scm>
42+
<connection>scm:git:git://github.com/teras/JavaPlot.git</connection>
43+
<developerConnection>scm:git:ssh://github.com/teras/JavaPlot.git</developerConnection>
44+
<url>http://github.com/teras/JavaPlot/tree/master</url>
45+
</scm>
46+
47+
<distributionManagement>
48+
<snapshotRepository>
49+
<id>ossrh</id>
50+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
51+
</snapshotRepository>
52+
</distributionManagement>
53+
54+
<build>
55+
<plugins>
56+
<plugin>
57+
<groupId>org.sonatype.plugins</groupId>
58+
<artifactId>nexus-staging-maven-plugin</artifactId>
59+
<version>1.6.7</version>
60+
<extensions>true</extensions>
61+
<configuration>
62+
<serverId>ossrh</serverId>
63+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
64+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
65+
</configuration>
66+
</plugin>
67+
<plugin>
68+
<groupId>org.apache.maven.plugins</groupId>
69+
<artifactId>maven-source-plugin</artifactId>
70+
<version>2.2.1</version>
71+
<executions>
72+
<execution>
73+
<id>attach-sources</id>
74+
<goals>
75+
<goal>jar-no-fork</goal>
76+
</goals>
77+
</execution>
78+
</executions>
79+
</plugin>
80+
<plugin>
81+
<groupId>org.apache.maven.plugins</groupId>
82+
<artifactId>maven-javadoc-plugin</artifactId>
83+
<version>2.9.1</version>
84+
<executions>
85+
<execution>
86+
<id>attach-javadocs</id>
87+
<goals>
88+
<goal>jar</goal>
89+
</goals>
90+
</execution>
91+
</executions>
92+
</plugin>
93+
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-gpg-plugin</artifactId>
96+
<version>1.5</version>
97+
<executions>
98+
<execution>
99+
<id>sign-artifacts</id>
100+
<phase>verify</phase>
101+
<goals>
102+
<goal>sign</goal>
103+
</goals>
104+
</execution>
105+
</executions>
106+
</plugin>
107+
</plugins>
108+
</build>
109+
110+
<properties>
111+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
112+
</properties>
30113
</project>

0 commit comments

Comments
 (0)