Skip to content

Commit

Permalink
Send project to central
Browse files Browse the repository at this point in the history
  • Loading branch information
teras committed Mar 28, 2017
1 parent 0d22753 commit c848058
Show file tree
Hide file tree
Showing 2 changed files with 170 additions and 5 deletions.
88 changes: 85 additions & 3 deletions base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,98 @@
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>com.panayotis.javaplot</groupId>
<groupId>com.panayotis</groupId>
<artifactId>javaplot</artifactId>
<version>0.5.0</version>
<name>JavaPlot</name>
<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>
<url>http://javaplot.panayotis.com</url>

<licenses>
<license>
<name>GNU Lesser General Public License, Version 2</name>
<url>https://www.gnu.org/licenses/lgpl-2.0.html</url>
</license>
</licenses>
<url>http://javaplot.panayotis.com</url>
<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>

<developers>
<developer>
<name>Panayotis Katsaloulis</name>
<email>[email protected]</email>
<organizationUrl>http://www.panayotis.com</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/teras/JavaPlot.git</connection>
<developerConnection>scm:git:ssh://github.com/teras/JavaPlot.git</developerConnection>
<url>http://github.com/teras/JavaPlot/tree/master</url>
</scm>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>

<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
87 changes: 85 additions & 2 deletions svg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
<artifactId>svg</artifactId>
<version>0.5.0</version>
<name>JavaPlot SVG</name>
<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>
<url>http://javaplot.panayotis.com</url>

<dependencies>
<dependency>
<groupId>com.panayotis</groupId>
Expand All @@ -19,12 +22,92 @@
<version>1.0</version>
</dependency>
</dependencies>

<licenses>
<license>
<name>GNU Lesser General Public License, Version 2</name>
<url>https://www.gnu.org/licenses/lgpl-2.0.html</url>
</license>
</licenses>
<url>http://javaplot.panayotis.com</url>
<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>

<developers>
<developer>
<name>Panayotis Katsaloulis</name>
<email>[email protected]</email>
<organizationUrl>http://www.panayotis.com</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/teras/JavaPlot.git</connection>
<developerConnection>scm:git:ssh://github.com/teras/JavaPlot.git</developerConnection>
<url>http://github.com/teras/JavaPlot/tree/master</url>
</scm>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>

<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>

0 comments on commit c848058

Please sign in to comment.