Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
350 changes: 175 additions & 175 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,178 +1,178 @@
<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.fugerit.java</groupId>
<artifactId>fj-bom</artifactId>
<version>1.4.2</version>
<relativePath></relativePath>
</parent>
<artifactId>query-export-tool</artifactId>
<version>0.4.2</version>
<packaging>jar</packaging>
<name>query-export-tool</name>
<description>Tool export query in CSV and other formats</description>
<url>http://www.fugerit.org/java/</url>
<scm>
<connection>scm:git:git://github.com/fugerit-org/query-export-tool.git</connection>
<developerConnection>scm:git:ssh://github.com/fugerit-org/query-export-tool.git</developerConnection>
<url>http://github.com/fugerit-org/query-export-tool/tree/master</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java-version-compliance>8</java-version-compliance>
<maven.compiler.source>${java-version-compliance}</maven.compiler.source>
<maven.compiler.target>${java-version-compliance}</maven.compiler.target>
<maven.compiler.release>${java-version-compliance}</maven.compiler.release>
<!-- libraries versions -->
<fj-version>8.3.8</fj-version>
<opencsv-version>5.8</opencsv-version>
</properties>
<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>
<developers>
<developer>
<name>Matteo a.k.a. Fugerit</name>
<email>m@fugerit.org</email>
<organization>Fugerit</organization>
<organizationUrl>http://www.fugerit.org</organizationUrl>
</developer>
<developer>
<name>Daneel</name>
<email>d@fugerit.org</email>
<organization>Fugerit</organization>
<organizationUrl>http://www.fugerit.org</organizationUrl>
</developer>
</developers>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-core</artifactId>
<version>${fj-version}</version>
</dependency>
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>${opencsv-version}</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>singlepackage</id>
<dependencies>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>org.fugerit.java.query.export.tool.QueryExportToolMain</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<finalName>dist-${project.artifactId}-${project.version}</finalName>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<organization>
<url>http://www.fugerit.org</url>
<name>Fugerit</name>
</organization>
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.fugerit.java</groupId>
<artifactId>fj-bom</artifactId>
<version>1.4.2</version>
<relativePath/>
</parent>

<artifactId>query-export-tool</artifactId>

<version>0.4.2</version>
<packaging>jar</packaging>

<name>query-export-tool</name>
<description>Tool export query in CSV and other formats</description>
<url>http://www.fugerit.org/java/</url>

<scm>
<connection>scm:git:git://github.com/fugerit-org/query-export-tool.git</connection>
<developerConnection>scm:git:ssh://github.com/fugerit-org/query-export-tool.git</developerConnection>
<url>http://github.com/fugerit-org/query-export-tool/tree/master</url>
</scm>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java-version-compliance>8</java-version-compliance>
<maven.compiler.source>${java-version-compliance}</maven.compiler.source>
<maven.compiler.target>${java-version-compliance}</maven.compiler.target>
<maven.compiler.release>${java-version-compliance}</maven.compiler.release>
<!-- libraries versions -->
<fj-version>8.3.8</fj-version>
<opencsv-version>5.9</opencsv-version>
</properties>

<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>

<developers>
<developer>
<name>Matteo a.k.a. Fugerit</name>
<email>m@fugerit.org</email>
<organization>Fugerit</organization>
<organizationUrl>http://www.fugerit.org</organizationUrl>
</developer>
<developer>
<name>Daneel</name>
<email>d@fugerit.org</email>
<organization>Fugerit</organization>
<organizationUrl>http://www.fugerit.org</organizationUrl>
</developer>
</developers>

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

<dependencies>

<dependency>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-core</artifactId>
<version>${fj-version}</version>
</dependency>

<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>${opencsv-version}</version>
</dependency>

<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

<profiles>

<profile>
<id>singlepackage</id>
<dependencies>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>org.fugerit.java.query.export.tool.QueryExportToolMain</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<finalName>dist-${project.artifactId}-${project.version}</finalName>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<organization>
<url>http://www.fugerit.org</url>
<name>Fugerit</name>
</organization>

</project>