|
3 | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | | - <groupId>com.panayotis.javaplot</groupId> |
| 6 | + <groupId>com.panayotis</groupId> |
7 | 7 | <artifactId>javaplot</artifactId> |
8 | 8 | <version>0.5.0</version> |
9 | 9 | <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 | + |
10 | 13 | <licenses> |
11 | 14 | <license> |
12 | 15 | <name>GNU Lesser General Public License, Version 2</name> |
13 | 16 | <url>https://www.gnu.org/licenses/lgpl-2.0.html</url> |
14 | 17 | </license> |
15 | 18 | </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 | + |
| 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> |
18 | 100 | </project> |
0 commit comments