pom.xml 2.1 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.398-SNAPSHOT</version>
8 9
  </parent>
  <artifactId>cli</artifactId>
10
  <name>Jenkins CLI</name>
11

12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <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 已提交
33 34 35
      <plugin>
        <groupId>org.jvnet.localizer</groupId>
        <artifactId>maven-localizer-plugin</artifactId>
A
abayer 已提交
36
        <version>1.10</version>
K
kohsuke 已提交
37 38 39 40 41 42 43 44 45 46 47 48
        <executions>
          <execution>
            <goals>
              <goal>generate</goal>
            </goals>
            <configuration>
              <fileMask>Messages.properties</fileMask>
              <outputDirectory>target/generated-sources/localizer</outputDirectory>
            </configuration>
          </execution>
        </executions>
      </plugin>
49 50 51
    </plugins>
  </build>

52 53 54 55 56 57 58 59 60 61 62 63 64
  <dependencies>
    <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 已提交
65 66
      <groupId>org.jvnet.localizer</groupId>
      <artifactId>localizer</artifactId>
67
      <version>1.10</version>
68 69 70
    </dependency>
  </dependencies>
</project>