qif-reader
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.squirrelgrip</groupId> <artifactId>qif-reader</artifactId> <version>1.0.0</version> </dependency>
<?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.squirrelgrip</groupId> <artifactId>qif-reader</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>A java implementation to aid in reading and writing qif files</description> <url>https://github.com/SquirrelGrip/QifReader</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Adrian Richter</name> </developer> </developers> <scm> <connection>scm:git:https://github.com/SquirrelGrip/QifReader.git</connection> <developerConnection>scm:git:https://github.com/SquirrelGrip/QifReader.git</developerConnection> <url>${project.url}</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.6.0</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>oss-snapshot</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>oss-release</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <pluginRepositories> <pluginRepository> <id>oss-release</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </pluginRepository> </pluginRepositories> <build> <sourceDirectory>src/main/java</sourceDirectory> <testSourceDirectory>src/test/java</testSourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <configuration> <executable>gpg</executable> <keyname>${env.GPG_KEYNAME}</keyname> <passphrase>${env.GPG_PASSPHRASE}</passphrase> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.7</version> <configuration> <processPlugins>false</processPlugins> <processDependencies>false</processDependencies> </configuration> </plugin> <plugin> <groupId>com.manamind.jgitflow</groupId> <artifactId>jgitflow-maven-plugin</artifactId> <version>1.0.0</version> <configuration> <username>${env.GIT_USER}</username> <password>${env.GIT_TOKEN}</password> <pullMaster>true</pullMaster> <pullDevelop>true</pullDevelop> <pushReleases>true</pushReleases> <pushHotfixes>true</pushHotfixes> <scmCommentPrefix>(CI):</scmCommentPrefix> <useReleaseProfile>false</useReleaseProfile> <allowUntracked>true</allowUntracked> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-plugin</artifactId> <version>1.11.2</version> <configuration> <providerImplementations> <git>jgit</git> </providerImplementations> <username>${env.GIT_USER}</username> <password>${env.GIT_TOKEN}</password> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-jgit</artifactId> <version>1.11.2</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0-M1</version> <configuration> <deployAtEnd>true</deployAtEnd> <retryFailedDeploymentCount>3</retryFailedDeploymentCount> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <properties> <deployment.url>${project.distributionManagement.repository.url}</deployment.url> </properties> </profile> <profile> <id>gitflowStart</id> <build> <plugins> <plugin> <groupId>com.manamind.jgitflow</groupId> <artifactId>jgitflow-maven-plugin</artifactId> <version>1.0.0</version> <configuration combine.self="append"> <allowSnapshots>true</allowSnapshots> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>gitflowFinish</id> <build> <plugins> <plugin> <groupId>com.manamind.jgitflow</groupId> <artifactId>jgitflow-maven-plugin</artifactId> <version>1.0.0</version> <configuration combine.self="append"> <allowSnapshots>false</allowSnapshots> <goals>clean deploy -Prelease</goals> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>