Blame view

pom.xml 3.24 KB
bernard authored
1
<?xml version="1.0" encoding="UTF-8"?>
l.gladek authored
2 3
<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">
bernard authored
4 5
    <modelVersion>4.0.0</modelVersion>
bernard authored
6
    <groupId>pl.com.it-crowd</groupId>
bernard authored
7
    <artifactId>youtrack-rest-api</artifactId>
l.gladek authored
8
    <version>1.0.2-SNAPSHOT</version>
bernard authored
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.2</version>
        </dependency>

        <dependency>
            <groupId>net.sourceforge.htmlunit</groupId>
            <artifactId>htmlunit</artifactId>
            <version>2.8</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.1.2</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <phase>package</phase>
                        <goals>
                            <goal>jar-no-fork</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>generate-jaxb-artifacts</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.codehaus.mojo</groupId>
                        <artifactId>jaxb2-maven-plugin</artifactId>
                        <version>1.3</version>
                        <executions>
                            <execution>
                                <goals>
                                    <goal>xjc</goal>
                                </goals>
                            </execution>
                        </executions>
                        <configuration>
                            <packageName>pl.com.it_crowd.youtrack.api.rest</packageName>
                            <outputDirectory>${build.sourceDirectory}</outputDirectory>
                            <clearOutputDir>false</clearOutputDir>
bernard authored
63
                            <extension>false</extension>
bernard authored
64 65 66 67 68
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
l.gladek authored
69 70 71 72 73 74
        <profile>
            <id>release</id>
            <properties>
                <skipTests>true</skipTests>
            </properties>
        </profile>
bernard authored
75 76 77
    </profiles>

    <distributionManagement>
bernard authored
78 79 80 81 82
        <repository>
            <id>it-crowd.com.pl</id>
            <name>MyCo Internal Repository</name>
            <url>http://artifactory.it-crowd.com.pl/libs-release-local</url>
        </repository>
bernard authored
83 84 85 86 87 88
        <snapshotRepository>
            <id>it-crowd.com.pl</id>
            <name>MyCo Internal Repository</name>
            <url>http://artifactory.it-crowd.com.pl/libs-snapshot-local</url>
        </snapshotRepository>
    </distributionManagement>
bernard authored
89 90

    <scm>
bernard authored
91
        <developerConnection>scm:svn:https://it-crowd.com.pl/svn/youtrack-rest-api/trunk</developerConnection>
bernard authored
92 93
    </scm>
bernard authored
94
</project>