ide/editor/pom.xml
changeset 1432 b5d60677fec7
parent 1431 6ceb7c457073
child 1433 3d696782eab9
     1.1 --- a/ide/editor/pom.xml	Mon Jan 13 12:37:03 2014 +0100
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,185 +0,0 @@
     1.4 -<?xml version="1.0" encoding="UTF-8"?>
     1.5 -<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/xsd/maven-4.0.0.xsd">
     1.6 -    <modelVersion>4.0.0</modelVersion>
     1.7 -    <parent>
     1.8 -        <artifactId>ide</artifactId>
     1.9 -        <groupId>org.apidesign.bck2brwsr</groupId>
    1.10 -        <version>0.9-SNAPSHOT</version>
    1.11 -    </parent>
    1.12 -
    1.13 -    <groupId>org.apidesign.bck2brwsr.ide</groupId>
    1.14 -    <artifactId>editor</artifactId>
    1.15 -    <version>0.9-SNAPSHOT</version>
    1.16 -    <packaging>nbm</packaging>
    1.17 -
    1.18 -    <name>Editor Support for Bck2Brwsr</name>
    1.19 -
    1.20 -    <properties>
    1.21 -        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.22 -        <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
    1.23 -    </properties>
    1.24 -
    1.25 -    <repositories>
    1.26 -        <!--
    1.27 -        Repository hosting NetBeans modules, especially APIs.
    1.28 -        Versions are based on IDE releases, e.g.: RELEASE691
    1.29 -        To create your own repository, use: nbm:populate-repository
    1.30 -        -->
    1.31 -        <repository>
    1.32 -            <id>netbeans</id>
    1.33 -            <name>NetBeans</name>
    1.34 -            <url>http://bits.netbeans.org/maven2/</url>
    1.35 -            <snapshots>
    1.36 -                <enabled>false</enabled>
    1.37 -            </snapshots>
    1.38 -        </repository>
    1.39 -    </repositories>
    1.40 -
    1.41 -    <dependencies>
    1.42 -        <dependency>
    1.43 -            <groupId>org.netbeans.api</groupId>
    1.44 -            <artifactId>org-netbeans-api-annotations-common</artifactId>
    1.45 -        </dependency>
    1.46 -        <dependency>
    1.47 -            <groupId>org.netbeans.api</groupId>
    1.48 -            <artifactId>org-netbeans-modules-java-source</artifactId>
    1.49 -        </dependency>
    1.50 -        <dependency>
    1.51 -            <groupId>org.netbeans.api</groupId>
    1.52 -            <artifactId>org-netbeans-libs-javacapi</artifactId>
    1.53 -        </dependency>
    1.54 -        <dependency>
    1.55 -            <groupId>org.netbeans.api</groupId>
    1.56 -            <artifactId>org-netbeans-spi-java-hints</artifactId>
    1.57 -        </dependency>
    1.58 -        <dependency>
    1.59 -            <groupId>org.netbeans.api</groupId>
    1.60 -            <artifactId>org-netbeans-modules-parsing-api</artifactId>
    1.61 -        </dependency>
    1.62 -        <dependency>
    1.63 -            <groupId>org.netbeans.api</groupId>
    1.64 -            <artifactId>org-netbeans-spi-editor-hints</artifactId>
    1.65 -        </dependency>
    1.66 -        <dependency>
    1.67 -            <groupId>org.netbeans.api</groupId>
    1.68 -            <artifactId>org-openide-util</artifactId>
    1.69 -        </dependency>
    1.70 -        <dependency>
    1.71 -            <groupId>org.netbeans.api</groupId>
    1.72 -            <artifactId>org-netbeans-modules-java-lexer</artifactId>
    1.73 -        </dependency>
    1.74 -        <dependency>
    1.75 -            <groupId>org.netbeans.api</groupId>
    1.76 -            <artifactId>org-netbeans-modules-lexer</artifactId>
    1.77 -        </dependency>
    1.78 -        <dependency>
    1.79 -            <groupId>org.apidesign.bck2brwsr</groupId>
    1.80 -            <artifactId>core</artifactId>
    1.81 -            <version>0.9-SNAPSHOT</version>
    1.82 -            <type>jar</type>
    1.83 -            <scope>test</scope>
    1.84 -        </dependency>
    1.85 -        <dependency>
    1.86 -            <groupId>org.netbeans.api</groupId>
    1.87 -            <artifactId>org-netbeans-modules-java-hints-test</artifactId>
    1.88 -            <scope>test</scope>
    1.89 -        </dependency>
    1.90 -        <dependency>
    1.91 -            <groupId>org.netbeans.api</groupId>
    1.92 -            <artifactId>org-netbeans-libs-junit4</artifactId>
    1.93 -            <scope>test</scope>
    1.94 -        </dependency>
    1.95 -        <dependency>
    1.96 -            <groupId>org.netbeans.modules</groupId>
    1.97 -            <artifactId>org-netbeans-lib-nbjavac</artifactId>
    1.98 -            <scope>test</scope>
    1.99 -        </dependency>
   1.100 -        <dependency>
   1.101 -            <groupId>org.testng</groupId>
   1.102 -            <artifactId>testng</artifactId>
   1.103 -            <scope>test</scope>
   1.104 -        </dependency>
   1.105 -    </dependencies>
   1.106 -
   1.107 -    <build>
   1.108 -        <plugins>
   1.109 -            <plugin>
   1.110 -                <groupId>org.codehaus.mojo</groupId>
   1.111 -                <artifactId>nbm-maven-plugin</artifactId>
   1.112 -                <version>3.8</version>
   1.113 -                <extensions>true</extensions>
   1.114 -            </plugin>
   1.115 -
   1.116 -            <plugin>
   1.117 -                <!-- NetBeans 6.9+ requires JDK 6 -->
   1.118 -                <groupId>org.apache.maven.plugins</groupId>
   1.119 -                <artifactId>maven-compiler-plugin</artifactId>
   1.120 -                <version>2.5.1</version>
   1.121 -                <configuration>
   1.122 -                    <source>1.6</source>
   1.123 -                    <target>1.6</target>
   1.124 -                    <compilerArguments>
   1.125 -                        <endorseddirs>${endorsed.dir}</endorseddirs>
   1.126 -                    </compilerArguments>
   1.127 -                </configuration>
   1.128 -            </plugin>
   1.129 -
   1.130 -            <plugin>
   1.131 -                <groupId>org.apache.maven.plugins</groupId>
   1.132 -                <artifactId>maven-jar-plugin</artifactId>
   1.133 -                <version>2.4</version>
   1.134 -                <configuration>
   1.135 -                    <!-- to have the jar plugin pickup the nbm generated manifest -->
   1.136 -                    <useDefaultManifestFile>true</useDefaultManifestFile>
   1.137 -                </configuration>
   1.138 -            </plugin>
   1.139 -
   1.140 -            <plugin>
   1.141 -                <groupId>org.apache.maven.plugins</groupId>
   1.142 -                <artifactId>maven-dependency-plugin</artifactId>
   1.143 -                <executions>
   1.144 -                    <execution>
   1.145 -                        <id>endorsed</id>
   1.146 -                        <phase>validate</phase>
   1.147 -                        <goals>
   1.148 -                            <goal>copy</goal>
   1.149 -                        </goals>
   1.150 -                    </execution>
   1.151 -                </executions>
   1.152 -                <configuration>
   1.153 -                    <outputDirectory>${endorsed.dir}</outputDirectory>
   1.154 -                    <silent>true</silent>
   1.155 -                    <artifactItems>
   1.156 -                        <artifactItem>
   1.157 -                            <groupId>org.netbeans.api</groupId>
   1.158 -                            <artifactId>org-netbeans-libs-javacapi</artifactId>
   1.159 -                            <version>${netbeans.version}</version>
   1.160 -                        </artifactItem>
   1.161 -                        <artifactItem>
   1.162 -                            <groupId>org.netbeans.external</groupId>
   1.163 -                            <artifactId>nb-javac-api</artifactId>
   1.164 -                            <version>${netbeans.version}</version>
   1.165 -                        </artifactItem>
   1.166 -                        <artifactItem>
   1.167 -                            <groupId>org.netbeans.modules</groupId>
   1.168 -                            <artifactId>org-netbeans-libs-javacimpl</artifactId>
   1.169 -                            <version>${netbeans.version}</version>
   1.170 -                        </artifactItem>
   1.171 -                        <artifactItem>
   1.172 -                            <groupId>org.netbeans.external</groupId>
   1.173 -                            <artifactId>nb-javac-impl</artifactId>
   1.174 -                            <version>${netbeans.version}</version>
   1.175 -                        </artifactItem>
   1.176 -                    </artifactItems>
   1.177 -                </configuration>
   1.178 -            </plugin>
   1.179 -            <plugin>
   1.180 -                <groupId>org.apache.maven.plugins</groupId>
   1.181 -                <artifactId>maven-surefire-plugin</artifactId>
   1.182 -                <configuration>
   1.183 -                    <argLine>-Djava.endorsed.dirs=${endorsed.dir}</argLine>
   1.184 -                </configuration>
   1.185 -            </plugin>
   1.186 -        </plugins>
   1.187 -    </build>
   1.188 -</project>