Maven Repository - POM file for Source Control jgit-flow-core 0.17 0.17

Summary

JGit-Flow core library.

The core java library implementing git flow.

Declaration

Here is the list of declaration for jgit-flow-core. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>com.atlassian.jgitflow</groupId>
   <artifactId>jgit-flow-core</artifactId>
   <version>0.17</version>
</dependency>

If you think this Maven repository POM file listing for jgit-flow-core is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Plugin

The following plugins are used in the jgit-flow-core-0.17.jar

  1. maven-bundle-plugin




Packages

The following packages are defined in the jgit-flow-core-0.17.jar

com.atlassian.jgitflow.core
com.atlassian.jgitflow.core.exception
com.atlassian.jgitflow.core.report
com.atlassian.jgitflow.core.util

POM File Source

Here is the content of the POM file.

<?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/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>jgit-flow</artifactId>
        <groupId>com.atlassian.jgitflow</groupId>
        <version>0.17</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>jgit-flow-core</artifactId>
    <name>JGit-Flow core library</name>
    <description>The core java library implementing git flow</description>
    <packaging>bundle</packaging>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.eclipse.jgit</groupId>
            <artifactId>org.eclipse.jgit</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.servicemix.bundles</groupId>
            <artifactId>org.apache.servicemix.bundles.jsch</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>