Skip to content

Commit

Permalink
Add pom.xml for the maven central repository.
Browse files Browse the repository at this point in the history
  • Loading branch information
javadev committed Mar 4, 2015
1 parent 6e7554d commit fe86ae3
Show file tree
Hide file tree
Showing 2 changed files with 112 additions and 1 deletion.
112 changes: 112 additions & 0 deletions pom-central.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.github.javadev</groupId>
<artifactId>dsnviewer</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<name>Java/swing application to view DSN files</name>
<description>The java/swing application to view DSN files</description>
<url>https://github.com/javadev/dsnviewer</url>

<developers>
<developer>
<name>Valentyn Kolesnikov</name>
</developer>
</developers>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<connection>scm:git:git://github.com/javadev/dsnviewer.git</connection>
<developerConnection>scm:git:git://github.com/javadev/dsnviewer.git</developerConnection>
<url>https://github.com/javadev/dsnviewer</url>
</scm>

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

<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/javadev/dsnviewer</url>
</ciManagement>

<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/javadev/dsnviewer</url>
</issueManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<mainClass>com.github.dsnviewer.DSNViewer</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
1 change: 0 additions & 1 deletion src/main/java/com/github/dsnviewer/gui/PropertyPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ public class PropertyPanel extends JPanel implements ChangeListener {
ModelDSN md;

/**
* @param field2s
*/
public PropertyPanel() {
super();
Expand Down

0 comments on commit fe86ae3

Please sign in to comment.