Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
258 lines (248 sloc)
6.94 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> | |
<groupId>org.minimalj</groupId> | |
<artifactId>minimalj</artifactId> | |
<version>1.29.0.0</version> | |
<name>Minimal-J</name> | |
<description>A java framework aiming for a minimal programming style. Includes GUI and persistence layer.</description> | |
<url>http://minimalj.org/</url> | |
<developers> | |
<developer> | |
<name>Bruno Eberhard</name> | |
<email>bruno.eberhard@pop.ch</email> | |
</developer> | |
</developers> | |
<licenses> | |
<license> | |
<name>Apache License, Version 2.0</name> | |
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | |
</license> | |
</licenses> | |
<scm> | |
<url>https://github.com/BrunoEberhard/minimal-j</url> | |
<connection>scm:git:git://github.com/BrunoEberhard/minimal-j.git</connection> | |
<developerConnection>scm:git:git@github.com:BrunoEberhard/minimal-j.git</developerConnection> | |
<tag>HEAD</tag> | |
</scm> | |
<distributionManagement> | |
<repository> | |
<id>sonatype-nexus-staging</id> | |
<name>Minimal-J sonytype Maven 2 repository</name> | |
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> | |
</repository> | |
<snapshotRepository> | |
<id>openech-repository</id> | |
<url>ftp://ftp.openech.ch/public_html/repository</url> | |
</snapshotRepository> | |
<!-- | |
<snapshotRepository> | |
<id>packagecloud-travis</id> | |
<url>https://packagecloud.io/minimalj/snapshot</url> | |
</snapshotRepository> | |
--> | |
</distributionManagement> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.8.0</version> | |
<configuration> | |
<release>11</release> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-jar-plugin</artifactId> | |
<version>2.1</version> | |
<configuration> | |
<archive> | |
<manifest> | |
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> | |
</manifest> | |
</archive> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>external.atlassian.jgitflow</groupId> | |
<artifactId>jgitflow-maven-plugin</artifactId> | |
<version>1.0-m5.1</version> | |
<configuration> | |
<flowInitContext> | |
<masterBranchName>master</masterBranchName> | |
<developBranchName>develop</developBranchName> | |
<featureBranchPrefix>feature-</featureBranchPrefix> | |
<releaseBranchPrefix>release-</releaseBranchPrefix> | |
<hotfixBranchPrefix>hotfix-</hotfixBranchPrefix> | |
<versionTagPrefix /> | |
</flowInitContext> | |
</configuration> | |
</plugin> | |
</plugins> | |
<extensions> | |
<extension> | |
<groupId>org.apache.maven.wagon</groupId> | |
<artifactId>wagon-ftp</artifactId> | |
</extension> | |
</extensions> | |
<resources> | |
<resource> | |
<directory>src/main/resources</directory> | |
</resource> | |
</resources> | |
<testResources> | |
<testResource> | |
<directory>src/test/java</directory> | |
<includes> | |
<include>**/*.properties</include> | |
</includes> | |
</testResource> | |
<testResource> | |
<directory>src/test/resources</directory> | |
<includes> | |
<include>**/*.properties</include> | |
<include>**/*.txt</include> | |
</includes> | |
</testResource> | |
</testResources> | |
</build> | |
<profiles> | |
<profile> | |
<id>sonatype-release</id> | |
<activation> | |
<property> | |
<name>sonatype-release</name> | |
</property> | |
</activation> | |
<build> | |
<plugins> | |
<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>3.1.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-jar-plugin</artifactId> | |
<version>2.1</version> | |
<configuration> | |
<archive> | |
<manifest> | |
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> | |
</manifest> | |
</archive> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-gpg-plugin</artifactId> | |
<version>1.6</version> | |
<executions> | |
<execution> | |
<id>sign-artifacts</id> | |
<phase>verify</phase> | |
<goals> | |
<goal>sign</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<groupId>org.sonatype.plugins</groupId> | |
<artifactId>nexus-staging-maven-plugin</artifactId> | |
<version>1.6.3</version> | |
<extensions>true</extensions> | |
<configuration> | |
<serverId>ossrh</serverId> | |
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | |
<autoReleaseAfterClose>true</autoReleaseAfterClose> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</profile> | |
<profile> | |
<id>cheerpj</id> | |
<activation> | |
<property> | |
<name>cheerpj</name> | |
</property> | |
</activation> | |
<build> | |
<finalName>minimalj_cheerp.jar</finalName> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-jar-plugin</artifactId> | |
<version>3.1.2</version> | |
<configuration> | |
<excludes> | |
<exclude>**/frontend/impl/swing/**</exclude> | |
<exclude>**/frontend/impl/web/**</exclude> | |
<exclude>**/frontend/impl/cheerpj/CheerpjHTTPD</exclude> | |
</excludes> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</profile> | |
</profiles> | |
<dependencies> | |
<dependency> | |
<groupId>com.h2database</groupId> | |
<artifactId>h2</artifactId> | |
<version>2.1.210</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.mariadb.jdbc</groupId> | |
<artifactId>mariadb-java-client</artifactId> | |
<version>2.4.1</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.postgresql</groupId> | |
<artifactId>postgresql</artifactId> | |
<version>42.2.25</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>com.microsoft.sqlserver</groupId> | |
<artifactId>mssql-jdbc</artifactId> | |
<version>8.4.1.jre8</version> | |
<scope>provided</scope> | |
</dependency> | |
<!-- just for test scope --> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.13.2</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<maven.javadoc.failOnError>false</maven.javadoc.failOnError> | |
</properties> | |
</project> |