Skip to content

Commit 1fcb614

Browse files
author
Boris Perović
committed
1.3 version
Added support for NetBeans 8.1
1 parent 3703b98 commit 1fcb614

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1385
-1310
lines changed

JavaParser/manifest.mf

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Manifest-Version: 1.0
2-
AutoUpdate-Show-In-Client: false
3-
OpenIDE-Module: com.github.javaparser
4-
OpenIDE-Module-Localizing-Bundle: com/github/javaparser/Bundle.properties
5-
OpenIDE-Module-Specification-Version: 1.2
6-
1+
Manifest-Version: 1.0
2+
AutoUpdate-Show-In-Client: false
3+
OpenIDE-Module: com.github.javaparser
4+
OpenIDE-Module-Localizing-Bundle: com/github/javaparser/Bundle.properties
5+
OpenIDE-Module-Specification-Version: 1.3
6+
+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#Sun, 26 Jul 2015 02:48:50 +0200
2-
javac.source=1.7
3-
javac.compilerargs=-Xlint -Xlint\:-serial
4-
license.file=COPYING.LESSER
5-
6-
keystore=../nbproject/private/easyUMLkeystore
7-
nbm_alias=easyUML
1+
#Sun, 06 Mar 2016 16:07:19 -0800
2+
javac.source=1.8
3+
javac.compilerargs=-Xlint -Xlint\:-serial
4+
license.file=COPYING.LESSER
5+
6+
keystore=../nbproject/private/easyUMLkeystore
7+
nbm_alias=easyUML

UMLCodeGenerator/build.xml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<!-- You may freely edit this file. See harness/README in the NetBeans platform -->
3-
<!-- for some information on what you could do (e.g. targets to override). -->
4-
<!-- If you delete this file and reopen the project it will be recreated. -->
5-
<project name="org.uml.newcode" default="netbeans" basedir=".">
6-
<description>Builds, tests, and runs the project org.uml.newcode.</description>
7-
<import file="nbproject/build-impl.xml"/>
8-
</project>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- You may freely edit this file. See harness/README in the NetBeans platform -->
3+
<!-- for some information on what you could do (e.g. targets to override). -->
4+
<!-- If you delete this file and reopen the project it will be recreated. -->
5+
<project name="org.uml.newcode" default="netbeans" basedir=".">
6+
<description>Builds, tests, and runs the project org.uml.newcode.</description>
7+
<import file="nbproject/build-impl.xml"/>
8+
</project>

UMLCodeGenerator/manifest.mf

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Manifest-Version: 1.0
2-
AutoUpdate-Show-In-Client: false
3-
OpenIDE-Module: org.uml.newcode
4-
OpenIDE-Module-Localizing-Bundle: org/uml/newcode/Bundle.properties
5-
OpenIDE-Module-Specification-Version: 1.2
6-
1+
Manifest-Version: 1.0
2+
AutoUpdate-Show-In-Client: false
3+
OpenIDE-Module: org.uml.newcode
4+
OpenIDE-Module-Localizing-Bundle: org/uml/newcode/Bundle.properties
5+
OpenIDE-Module-Specification-Version: 1.3
6+
+45-45
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<!--
3-
*** GENERATED FROM project.xml - DO NOT EDIT ***
4-
*** EDIT ../build.xml INSTEAD ***
5-
-->
6-
<project name="org.uml.newcode-impl" basedir="..">
7-
<fail message="Please build using Ant 1.7.1 or higher.">
8-
<condition>
9-
<not>
10-
<antversion atleast="1.7.1"/>
11-
</not>
12-
</condition>
13-
</fail>
14-
<property file="nbproject/private/suite-private.properties"/>
15-
<property file="nbproject/suite.properties"/>
16-
<fail unless="suite.dir">You must set 'suite.dir' to point to your containing module suite</fail>
17-
<property file="${suite.dir}/nbproject/private/platform-private.properties"/>
18-
<property file="${suite.dir}/nbproject/platform.properties"/>
19-
<macrodef name="property" uri="http://www.netbeans.org/ns/nb-module-project/2">
20-
<attribute name="name"/>
21-
<attribute name="value"/>
22-
<sequential>
23-
<property name="@{name}" value="${@{value}}"/>
24-
</sequential>
25-
</macrodef>
26-
<macrodef name="evalprops" uri="http://www.netbeans.org/ns/nb-module-project/2">
27-
<attribute name="property"/>
28-
<attribute name="value"/>
29-
<sequential>
30-
<property name="@{property}" value="@{value}"/>
31-
</sequential>
32-
</macrodef>
33-
<property file="${user.properties.file}"/>
34-
<nbmproject2:property name="harness.dir" value="nbplatform.${nbplatform.active}.harness.dir" xmlns:nbmproject2="http://www.netbeans.org/ns/nb-module-project/2"/>
35-
<nbmproject2:property name="nbplatform.active.dir" value="nbplatform.${nbplatform.active}.netbeans.dest.dir" xmlns:nbmproject2="http://www.netbeans.org/ns/nb-module-project/2"/>
36-
<nbmproject2:evalprops property="cluster.path.evaluated" value="${cluster.path}" xmlns:nbmproject2="http://www.netbeans.org/ns/nb-module-project/2"/>
37-
<fail message="Path to 'platform' cluster missing in $${cluster.path} property or using corrupt Netbeans Platform (missing harness).">
38-
<condition>
39-
<not>
40-
<contains string="${cluster.path.evaluated}" substring="platform"/>
41-
</not>
42-
</condition>
43-
</fail>
44-
<import file="${harness.dir}/build.xml"/>
45-
</project>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
*** GENERATED FROM project.xml - DO NOT EDIT ***
4+
*** EDIT ../build.xml INSTEAD ***
5+
-->
6+
<project name="org.uml.newcode-impl" basedir="..">
7+
<fail message="Please build using Ant 1.7.1 or higher.">
8+
<condition>
9+
<not>
10+
<antversion atleast="1.7.1"/>
11+
</not>
12+
</condition>
13+
</fail>
14+
<property file="nbproject/private/suite-private.properties"/>
15+
<property file="nbproject/suite.properties"/>
16+
<fail unless="suite.dir">You must set 'suite.dir' to point to your containing module suite</fail>
17+
<property file="${suite.dir}/nbproject/private/platform-private.properties"/>
18+
<property file="${suite.dir}/nbproject/platform.properties"/>
19+
<macrodef name="property" uri="http://www.netbeans.org/ns/nb-module-project/2">
20+
<attribute name="name"/>
21+
<attribute name="value"/>
22+
<sequential>
23+
<property name="@{name}" value="${@{value}}"/>
24+
</sequential>
25+
</macrodef>
26+
<macrodef name="evalprops" uri="http://www.netbeans.org/ns/nb-module-project/2">
27+
<attribute name="property"/>
28+
<attribute name="value"/>
29+
<sequential>
30+
<property name="@{property}" value="@{value}"/>
31+
</sequential>
32+
</macrodef>
33+
<property file="${user.properties.file}"/>
34+
<nbmproject2:property name="harness.dir" value="nbplatform.${nbplatform.active}.harness.dir" xmlns:nbmproject2="http://www.netbeans.org/ns/nb-module-project/2"/>
35+
<nbmproject2:property name="nbplatform.active.dir" value="nbplatform.${nbplatform.active}.netbeans.dest.dir" xmlns:nbmproject2="http://www.netbeans.org/ns/nb-module-project/2"/>
36+
<nbmproject2:evalprops property="cluster.path.evaluated" value="${cluster.path}" xmlns:nbmproject2="http://www.netbeans.org/ns/nb-module-project/2"/>
37+
<fail message="Path to 'platform' cluster missing in $${cluster.path} property or using corrupt Netbeans Platform (missing harness).">
38+
<condition>
39+
<not>
40+
<contains string="${cluster.path.evaluated}" substring="platform"/>
41+
</not>
42+
</condition>
43+
</fail>
44+
<import file="${harness.dir}/build.xml"/>
45+
</project>
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
build.xml.data.CRC32=cc36e064
2-
build.xml.script.CRC32=3d6fbdc0
3-
build.xml.stylesheet.CRC32=a56c6a5b@2.67.1
4-
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5-
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6-
nbproject/build-impl.xml.data.CRC32=cc36e064
7-
nbproject/build-impl.xml.script.CRC32=b6c02f05
8-
nbproject/build-impl.xml.stylesheet.CRC32=238281d1@2.67.1
1+
build.xml.data.CRC32=b4cf2638
2+
build.xml.script.CRC32=3d6fbdc0
3+
build.xml.stylesheet.CRC32=a56c6a5b@2.71.1
4+
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5+
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6+
nbproject/build-impl.xml.data.CRC32=b4cf2638
7+
nbproject/build-impl.xml.script.CRC32=b6c02f05
8+
nbproject/build-impl.xml.stylesheet.CRC32=238281d1@2.71.1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#Sun, 26 Jul 2015 02:48:50 +0200
2-
javac.source=1.7
3-
javac.compilerargs=-Xlint -Xlint\:-serial
4-
license.file=LICENSE-2.0.txt
5-
nbm.homepage=https\://java.net/projects/nb-uml-plugin
6-
nbm.module.author=Open Source Software Development Center, Faculty of Organisational Sciences, University of Belgrade
7-
8-
keystore=../nbproject/private/easyUMLkeystore
9-
nbm_alias=easyUML
1+
#Sun, 06 Mar 2016 16:07:19 -0800
2+
javac.source=1.8
3+
javac.compilerargs=-Xlint -Xlint\:-serial
4+
license.file=LICENSE-2.0.txt
5+
nbm.homepage=https\://java.net/projects/nb-uml-plugin
6+
nbm.module.author=Open Source Software Development Center, Faculty of Organisational Sciences, University of Belgrade
7+
8+
keystore=../nbproject/private/easyUMLkeystore
9+
nbm_alias=easyUML

0 commit comments

Comments
 (0)