Blame view

pom.xml 4.04 KB
bernard authored
1
<?xml version="1.0" encoding="UTF-8"?>
l.gladek authored
2 3
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
bernard authored
4
    <modelVersion>4.0.0</modelVersion>
bernard authored
5
    <groupId>pl.itcrowd</groupId>
bernard authored
6
    <artifactId>youtrack-rest-api</artifactId>
l.gladek authored
7
    <version>1.1.2-SNAPSHOT</version>
Bernard Labno authored
8 9
    <scm>
        <developerConnection>scm:git:https://itcrowd.pl/gitblit/git/OpenSource/youtrack-rest-api.git</developerConnection>
bernard authored
10
      <tag>HEAD</tag>
bernard authored
11
  </scm>
bernard authored
12 13 14 15
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
Bernard Labno authored
16 17 18 19 20 21 22 23 24
                <artifactId>maven-release-plugin</artifactId>
                <version>2.4.1</version>
                <configuration>
                    <localCheckout>true</localCheckout>
                    <pushChanges>false</pushChanges>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
bernard authored
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
                <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>
                            <clearOutputDir>false</clearOutputDir>
bernard authored
57
                            <extension>false</extension>
Bernard Labno authored
58 59
                            <outputDirectory>${project.build.sourceDirectory}</outputDirectory>
                            <packageName>pl.itcrowd.youtrack.api.rest</packageName>
bernard authored
60 61 62 63 64
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
l.gladek authored
65 66 67 68 69 70
        <profile>
            <id>release</id>
            <properties>
                <skipTests>true</skipTests>
            </properties>
        </profile>
bernard authored
71
    </profiles>
Bernard Labno authored
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
    <dependencies>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.3</version>
        </dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.2-beta1</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>1.9.0-rc1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
bernard authored
96
    <distributionManagement>
bernard authored
97
        <repository>
bernard authored
98 99 100
            <id>itcrowd.pl</id>
            <name>IT Crowd company internal repository</name>
            <url>http://artifactory.itcrowd.pl/libs-release-local</url>
bernard authored
101
        </repository>
bernard authored
102
        <snapshotRepository>
bernard authored
103 104 105
            <id>itcrowd.pl</id>
            <name>IT Crowd company internal repository</name>
            <url>http://artifactory.itcrowd.pl/libs-snapshot-local</url>
bernard authored
106 107
        </snapshotRepository>
    </distributionManagement>
bernard authored
108
</project>