• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!--
2  ~ Copyright 2015 Google Inc.
3  ~
4  ~ Licensed under the Apache License, Version 2.0 (the "License");
5  ~ you may not use this file except in compliance with the License.
6  ~ You may obtain a copy of the License at
7  ~
8  ~     http://www.apache.org/licenses/LICENSE-2.0
9  ~
10  ~ Unless required by applicable law or agreed to in writing, software
11  ~ distributed under the License is distributed on an "AS IS" BASIS,
12  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  ~ See the License for the specific language governing permissions and
14  ~ limitations under the License.
15  -->
16
17<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19  <modelVersion>4.0.0</modelVersion>
20  <parent>
21    <groupId>com.google.googlejavaformat</groupId>
22    <artifactId>google-java-format-parent</artifactId>
23    <version>1.6</version>
24  </parent>
25
26  <artifactId>google-java-format-eclipse-plugin</artifactId>
27  <version>1.6.0</version>
28  <packaging>eclipse-plugin</packaging>
29  <name>google-java-format Plugin for Eclipse 4.5+</name>
30
31  <description>
32    A Java source code formatter that follows Google Java Style.
33  </description>
34
35  <properties>
36    <tycho-version>0.26.0</tycho-version>
37  </properties>
38
39  <repositories>
40    <repository>
41      <id>mars</id>
42      <layout>p2</layout>
43      <url>https://download.eclipse.org/releases/mars</url>
44    </repository>
45  </repositories>
46
47  <dependencies>
48    <dependency>
49      <groupId>com.google.googlejavaformat</groupId>
50      <artifactId>google-java-format</artifactId>
51      <version>1.6</version>
52    </dependency>
53  </dependencies>
54
55  <build>
56    <plugins>
57
58      <plugin>
59        <groupId>org.eclipse.tycho</groupId>
60        <artifactId>tycho-maven-plugin</artifactId>
61        <version>${tycho-version}</version>
62        <extensions>true</extensions>
63      </plugin>
64
65      <plugin>
66        <groupId>org.eclipse.tycho</groupId>
67        <artifactId>target-platform-configuration</artifactId>
68        <version>${tycho-version}</version>
69        <configuration>
70          <environments>
71            <environment>
72              <os>linux</os>
73              <ws>gtk</ws>
74              <arch>x86</arch>
75            </environment>
76            <environment>
77              <os>linux</os>
78              <ws>gtk</ws>
79              <arch>x86_64</arch>
80            </environment>
81            <environment>
82              <os>win32</os>
83              <ws>win32</ws>
84              <arch>x86</arch>
85            </environment>
86            <environment>
87              <os>win32</os>
88              <ws>win32</ws>
89              <arch>x86_64</arch>
90            </environment>
91            <environment>
92              <os>macosx</os>
93              <ws>cocoa</ws>
94              <arch>x86_64</arch>
95            </environment>
96          </environments>
97        </configuration>
98      </plugin>
99
100    </plugins>
101  </build>
102
103</project>
104