pom.xml 2.5 KB
Newer Older
1
<?xml version="1.0" encoding="UTF-8"?>
K
kohsuke 已提交
2
<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">
3 4 5
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <artifactId>pom</artifactId>
6
    <groupId>org.jenkins-ci.main</groupId>
7
    <version>1.422-SNAPSHOT</version>
8 9
  </parent>
  <artifactId>cli</artifactId>
10
  <name>Jenkins CLI</name>
11

12 13 14 15
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
16
        <!-- version specified in grandparent pom -->
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
        <executions>
          <execution>
            <goals>
              <goal>attached</goal>
            </goals>
            <phase>package</phase>
            <configuration>
              <descriptorId>jar-with-dependencies</descriptorId>
              <archive>
                <manifest>
                  <mainClass>hudson.cli.CLI</mainClass>
                </manifest>
              </archive>
            </configuration>
          </execution>
        </executions>
      </plugin>
K
kohsuke 已提交
34 35 36
      <plugin>
        <groupId>org.jvnet.localizer</groupId>
        <artifactId>maven-localizer-plugin</artifactId>
37
        <!-- version specified in grandparent pom -->
K
kohsuke 已提交
38 39 40 41 42 43 44 45 46 47 48 49
        <executions>
          <execution>
            <goals>
              <goal>generate</goal>
            </goals>
            <configuration>
              <fileMask>Messages.properties</fileMask>
              <outputDirectory>target/generated-sources/localizer</outputDirectory>
            </configuration>
          </execution>
        </executions>
      </plugin>
50 51 52
    </plugins>
  </build>

53
  <dependencies>
54 55 56 57 58
    <dependency>
      <groupId>commons-codec</groupId>
      <artifactId>commons-codec</artifactId>
      <version>1.4</version>
    </dependency>
59 60 61 62 63 64 65 66 67 68 69 70
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>remoting</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
K
kohsuke 已提交
71 72
      <groupId>org.jvnet.localizer</groupId>
      <artifactId>localizer</artifactId>
73
      <version>1.10</version>
74
    </dependency>
75 76 77 78 79
    <dependency>
      <groupId>org.jvnet.hudson</groupId>
      <artifactId>trilead-ssh2</artifactId>
      <version>build212-hudson-5</version>
    </dependency>
80 81
  </dependencies>
</project>