79 lines
3.3 KiB
XML
79 lines
3.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>ch.psi</groupId>
|
|
<artifactId>fda.ui</artifactId>
|
|
<version>1.1.35</version>
|
|
</parent>
|
|
|
|
<artifactId>branding</artifactId>
|
|
<packaging>nbm</packaging>
|
|
|
|
<name>fda.ui - NB App Branding</name>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.netbeans.api</groupId>
|
|
<artifactId>org-netbeans-api-annotations-common</artifactId>
|
|
<version>${netbeans.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>nbm-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<!-- to have the jar plugin pickup the nbm generated manifest -->
|
|
<useDefaultManifestFile>true</useDefaultManifestFile>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<version>1.6</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>compile</phase>
|
|
<configuration>
|
|
<target name="run">
|
|
<!-- http://blogs.kiyut.com/tonny/2007/08/06/netbeans-platform-branding-and-version-info/ -->
|
|
<!-- <propertyfile
|
|
file="src/main//branding/core/core.jar/org/netbeans/core/startup/Bundle.properties"
|
|
comment="Updated by build script">
|
|
<entry key="currentVersion" value="${app.title} ${app.version} " />
|
|
</propertyfile>-->
|
|
|
|
<propertyfile
|
|
file="src/main/nbm-branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties">
|
|
<entry key="CTL_MainWindow_Title" value="FDA ${project.version}" />
|
|
<entry key="CTL_MainWindow_Title_No_Project" value="FDA ${project.version}" />
|
|
</propertyfile>
|
|
<replaceregexp file="src/main/nbm-branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties" match="^#.*\n" replace="" byline="false" />
|
|
<!-- <propertyfile
|
|
file="${basedir}/branding/modules/org-netbeans-core.jar/org/netbeans/core/ui/Bundle.properties"
|
|
comment="Updated by build script">
|
|
<entry key="LBL_ProductInformation" value="${app.title}" />
|
|
</propertyfile>-->
|
|
</target>
|
|
</configuration>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|