File: compiler.xml

package info (click to toggle)
libcommons-attributes-java 2.2-8
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 872 kB
  • ctags: 771
  • sloc: java: 3,458; xml: 2,561; makefile: 21; sh: 5
file content (34 lines) | stat: -rw-r--r-- 1,026 bytes parent folder | download
1
2
3
4
5
6
7
8
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
<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>commons-attributes</groupId>
  <artifactId>commons-attributes-compiler</artifactId>
  <version>2.2</version>
  <dependencies>
    <dependency>
      <groupId>commons-attributes</groupId>
      <artifactId>commons-attributes-api</artifactId>
      <version>2.2</version>
    </dependency>
  </dependencies>
  <profiles>
    <profile>
      <!-- NOTE: This will not be activated on OS X, since classes.jar already has the tools in it. -->
      <id>default-tools.jar</id>
      <activation>
        <property>
          <name>java.vendor</name>
          <value>Sun Microsystems Inc.</value>
        </property>
       </activation>
      <dependencies>
        <dependency>
          <groupId>com.sun</groupId>
          <artifactId>tools</artifactId>
          <version>1.4.2</version>
          <scope>system</scope>
          <systemPath>${java.home}/../lib/tools.jar</systemPath>
         </dependency>
      </dependencies>
    </profile>
  </profiles>
</project>