Using longer bundle symbolic names netbeans
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 16 Dec 2013 15:48:09 +0100
branchnetbeans
changeset 361700087d2a5d3
parent 360 046ac1265553
child 362 92fb71afdc0e
Using longer bundle symbolic names
boot-fx/pom.xml
boot/src/main/java/net/java/html/boot/BrowserBuilder.java
ko-archetype/src/main/resources/archetype-resources/pom.xml
ko-fx/pom.xml
ko-ws-tyrus/pom.xml
pom.xml
     1.1 --- a/boot-fx/pom.xml	Mon Dec 16 15:22:30 2013 +0100
     1.2 +++ b/boot-fx/pom.xml	Mon Dec 16 15:48:09 2013 +0100
     1.3 @@ -7,7 +7,7 @@
     1.4      <version>0.7-SNAPSHOT</version>
     1.5    </parent>
     1.6    <groupId>org.netbeans.html</groupId>
     1.7 -  <artifactId>boot-fx</artifactId>
     1.8 +  <artifactId>net.java.html.boot.fx</artifactId>
     1.9    <version>0.7-SNAPSHOT</version>
    1.10    <name>FX WebView Bootstrap</name>
    1.11    <packaging>bundle</packaging>
     2.1 --- a/boot/src/main/java/net/java/html/boot/BrowserBuilder.java	Mon Dec 16 15:22:30 2013 +0100
     2.2 +++ b/boot/src/main/java/net/java/html/boot/BrowserBuilder.java	Mon Dec 16 15:48:09 2013 +0100
     2.3 @@ -82,8 +82,8 @@
     2.4   * also needs an implementation on the classpath of one's application. For example
     2.5   * use: <pre>
     2.6   * &lt;dependency&gt;
     2.7 - *   &lt;groupId&gt;org.apidesign.html&lt;/groupId&gt;
     2.8 - *   &lt;artifactId&gt;boot-fx&lt;/artifactId&gt;
     2.9 + *   &lt;groupId&gt;org.netbeans.html&lt;/groupId&gt;
    2.10 + *   &lt;artifactId&gt;net.java.html.boot.fx&lt;/artifactId&gt;
    2.11   *   &lt;scope&gt;runtime&lt;/scope&gt;
    2.12   * &lt;/dependency&gt;
    2.13   * </pre>
     3.1 --- a/ko-archetype/src/main/resources/archetype-resources/pom.xml	Mon Dec 16 15:22:30 2013 +0100
     3.2 +++ b/ko-archetype/src/main/resources/archetype-resources/pom.xml	Mon Dec 16 15:48:09 2013 +0100
     3.3 @@ -118,7 +118,7 @@
     3.4      </dependency>
     3.5      <dependency>
     3.6          <groupId>org.netbeans.html</groupId>
     3.7 -        <artifactId>boot-fx</artifactId>
     3.8 +        <artifactId>net.java.html.boot.fx</artifactId>
     3.9          <version>\${net.java.html.version}</version>
    3.10          <scope>runtime</scope>
    3.11      </dependency>
     4.1 --- a/ko-fx/pom.xml	Mon Dec 16 15:22:30 2013 +0100
     4.2 +++ b/ko-fx/pom.xml	Mon Dec 16 15:48:09 2013 +0100
     4.3 @@ -14,6 +14,7 @@
     4.4    <url>http://maven.apache.org</url>
     4.5    <properties>
     4.6      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     4.7 +    <bundleSymbolicName>org.netbeans.html.ko-fx</bundleSymbolicName>
     4.8    </properties>
     4.9    <build>
    4.10        <plugins>
    4.11 @@ -80,7 +81,7 @@
    4.12      </dependency>
    4.13      <dependency>
    4.14        <groupId>${project.groupId}</groupId>
    4.15 -      <artifactId>boot-fx</artifactId>
    4.16 +      <artifactId>net.java.html.boot.fx</artifactId>
    4.17        <version>${project.version}</version>
    4.18        <scope>test</scope>
    4.19      </dependency>
     5.1 --- a/ko-ws-tyrus/pom.xml	Mon Dec 16 15:22:30 2013 +0100
     5.2 +++ b/ko-ws-tyrus/pom.xml	Mon Dec 16 15:48:09 2013 +0100
     5.3 @@ -38,6 +38,7 @@
     5.4      </build>
     5.5      <properties>
     5.6      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     5.7 +    <bundleSymbolicName>org.netbeans.html.ko-ws-tyrus</bundleSymbolicName>
     5.8    </properties>
     5.9    <dependencies>
    5.10      <!-- compile only deps -->
    5.11 @@ -126,7 +127,7 @@
    5.12      </dependency>
    5.13      <dependency>
    5.14          <groupId>${project.groupId}</groupId>
    5.15 -        <artifactId>boot-fx</artifactId>
    5.16 +        <artifactId>net.java.html.boot.fx</artifactId>
    5.17          <version>${project.version}</version>
    5.18          <scope>test</scope>
    5.19      </dependency>
     6.1 --- a/pom.xml	Mon Dec 16 15:22:30 2013 +0100
     6.2 +++ b/pom.xml	Mon Dec 16 15:48:09 2013 +0100
     6.3 @@ -16,6 +16,7 @@
     6.4        <netbeans.version>RELEASE73</netbeans.version>
     6.5        <license>COPYING</license>
     6.6        <publicPackages></publicPackages>
     6.7 +      <bundleSymbolicName>${project.artifactId}</bundleSymbolicName>
     6.8    </properties>
     6.9    <modules>
    6.10      <module>json</module>
    6.11 @@ -139,7 +140,7 @@
    6.12                  <configuration>
    6.13                      <instructions>
    6.14                          <Export-Package>${publicPackages},META-INF.services.*</Export-Package>
    6.15 -                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
    6.16 +                        <Bundle-SymbolicName>${bundleSymbolicName}</Bundle-SymbolicName>
    6.17                      </instructions>
    6.18                  </configuration>
    6.19              </plugin>