Skip to content

Commit

Permalink
Fixed the issue# 1.
Browse files Browse the repository at this point in the history
  • Loading branch information
brsanthu committed Oct 29, 2013
1 parent 7628185 commit bed93b8
Show file tree
Hide file tree
Showing 11 changed files with 364 additions and 171 deletions.
2 changes: 0 additions & 2 deletions .settings/org.eclipse.pde.core.prefs

This file was deleted.

131 changes: 99 additions & 32 deletions pom.xml
@@ -1,11 +1,15 @@
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>

<groupId>com.brsanthu</groupId>
<artifactId>data-exporter</artifactId>
<name>data-exporter</name>
<version>1.0.4</version>
<url>https://github.com/brsanthu/data-exporter</url>

<properties>
<java-version>1.6</java-version>
Expand All @@ -25,7 +29,6 @@
<showWarnings>true</showWarnings>
</configuration>
</plugin>

<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
Expand All @@ -41,6 +44,9 @@
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<excludePackageNames>*.internal.*</excludePackageNames>
</configuration>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -81,7 +87,7 @@
<configuration>
<manifestLocation>META-INF</manifestLocation>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Import-Package>*;version=!</Import-Package>
</instructions>
</configuration>
Expand All @@ -102,6 +108,12 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.1</version>
</plugin>
</plugins>
<testResources>
<testResource>
Expand All @@ -112,13 +124,8 @@
</testResource>
</testResources>
</build>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
Expand All @@ -130,18 +137,6 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.googlecode.openpojo</groupId>
<artifactId>openpojo</artifactId>
<version>0.3.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
Expand All @@ -150,26 +145,98 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
<version>${slf4j-version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>1.7.5</version>
<version>${slf4j-version}</version>
</dependency>
<dependency>
<groupId>com.googlecode.openpojo</groupId>
<artifactId>openpojo</artifactId>
<version>0.3.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.0.1</version>
<scope>test</scope>
</dependency>
</dependencies>

<name>Data Exporter</name>
<url>https://github.com/brsanthu/data-exporter</url>
<description>data-exporter is a Java library to export the tabular data (like List of rows) into many output formats. As of latest release, this library supports following formats.</description>
<inceptionYear>Sep 2013</inceptionYear>
<organization>
<name>Santhosh Kumar</name>
<url>www.brsanthu.com</url>
<url>http://www.brsanthu.com</url>
<name>brsanthu Inc</name>
</organization>
<scm>
<url>https://github.com/brsanthu/data-exporter</url>
<connection>scm:git:git@github.com:brsanthu/data-exporter</connection>
<developerConnection>scm:git:git@github.com:brsanthu/data-exporter</developerConnection>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>github.com</system>
<url>https://javaserverfaces.dev.java.net/servlets/ProjectIssues</url>
<url>https://github.com/brsanthu/data-exporter/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git@github.com:brsanthu/data-exporter.git</connection>
<developerConnection>scm:git:git@github.com:brsanthu/data-exporter.git</developerConnection>
<url>git@github.com:brsanthu/data-exporter.git</url>
</scm>
<developers>
<developer>
<name>Santhosh Kumar</name>
<organizationUrl>http://www.brsanthu.com</organizationUrl>
<url>http://www.brsanthu.com</url>
<roles>
<role>Initiator</role>
<role>Commiter</role>
</roles>
<email>brsanthu at gmail</email>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit bed93b8

Please sign in to comment.