Skip to content

Commit a3f82bd

Browse files
committed
VisualVM 2.1.2 branding
1 parent 3853f1e commit a3f82bd

File tree

18 files changed

+67
-21
lines changed

18 files changed

+67
-21
lines changed

README.md

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# VisualVM (master) sources repository
1+
# VisualVM (2.1.2) sources repository
22

33
VisualVM is a visual tool integrating commandline JDK tools and lightweight profiling capabilities. See https://visualvm.github.io for details, downloads and documentation.
44

@@ -24,6 +24,43 @@ To build VisualVM, use `ant build-zip` command in the `visualvm/visualvm` direct
2424

2525
To build or run the plugins suite, use `ant build` or `ant run` in the `visualvm/plugins` directory. This will automatically build the zip distribution of the core VisualVM tool into `visualvm/visualvm/dist/visualvm.zip` and extract it into the `visualvm/plugins/visualvm` directory. After that the build of the plugins suite continues to build each of the individual plugins. Running the plugins suite means starting VisualVM with all the plugins installed.
2626

27+
## Generate the Maven artifacts
28+
29+
First prepare the binaries:
30+
31+
1. Build VisualVM tool as described above
32+
2. Expand/decompress the generated `visualvm.zip` file in `visualvm/dist`.
33+
3. Generate the NBMs by running: `ant nbms`. This will generate a folder `build/updates` containing all the NBMs.
34+
35+
To generate the artifacts use [`org.apache.netbeans.utilities:nb-repository-plugin`](https://bits.netbeans.org/mavenutilities/nb-repository-plugin/index.html). Make sure the current directory is still `visualvm/visualvm`.
36+
37+
To install the artifacts into your local repository use the following command:
38+
39+
```
40+
mvn \
41+
-DnetbeansInstallDirectory=dist/visualvm \
42+
-DnetbeansNbmDirectory=build/updates \
43+
-DgroupIdPrefix=org.graalvm.visualvm \
44+
-DforcedVersion=RELEASE212 \
45+
org.apache.netbeans.utilities:nb-repository-plugin:populate
46+
```
47+
48+
To publish the artifacts into a remote repository use the following command:
49+
50+
```
51+
mvn
52+
-DnetbeansInstallDirectory=dist/visualvm \
53+
-DnetbeansNbmDirectory=build/updates \
54+
-DgroupIdPrefix=org.graalvm.visualvm \
55+
-DforcedVersion=RELEASE212 \
56+
-DdeployUrl=<URL to the remote repo> \
57+
-DdeployId=<repository id referenced in your settings.xml> \
58+
-DskipInstall=true \
59+
org.apache.netbeans.utilities:nb-repository-plugin:populate
60+
```
61+
62+
For more information about `nb-repository-plugin` see https://bits.netbeans.org/mavenutilities/nb-repository-plugin/index.html
63+
2764
## Contribute
2865

2966
We highly appreciate any feedback! Please let us know your ideas, missing features, or bugs found. Either [file a RFE/bug](https://github.com/oracle/visualvm/issues/new/choose) or [leave us a message](https://visualvm.github.io/feedback.html). For legal reasons, we cannot accept external pull requests. See

visualvm/appui/src/org/graalvm/visualvm/modules/appui/AboutAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
public final class AboutAction extends AbstractAction {
5252
private final static Logger LOGGER = Logger.getLogger(AboutAction.class.getName());
5353

54-
private String versionString = "Dev"; // Use "Dev" for development builds // NOI18N
54+
private String versionString = "2.1.2"; // Use "Dev" for development builds // NOI18N
5555

5656

5757
public AboutAction() {

visualvm/appui/src/org/graalvm/visualvm/modules/appui/Bundle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ OpenIDE-Module-Short-Description=UI customizations for VisualVM
3131

3232
LBL_About_VisualVM=About VisualVM
3333

34-
LBL_Version_Build=Version: {0} (Build {1})
34+
LBL_Version_Build=Version: {0}
3535

3636
MSG_License=<b>VisualVM</b> has been licensed under the GNU General Public License (GPL) Version 2 with Classpath Exception.
3737

Loading
Loading

visualvm/branding/core/core.jar/org/netbeans/core/startup/Bundle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# or visit www.oracle.com if you need additional information or have any
2323
# questions.
2424

25-
currentVersion=VisualVM Dev
25+
currentVersion=VisualVM 2.1.2
2626
LBL_splash_window_title=Starting VisualVM
2727
SPLASH_HEIGHT=310
2828
SPLASH_WIDTH=530
Loading

visualvm/branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
# or visit www.oracle.com if you need additional information or have any
2323
# questions.
2424

25-
CTL_MainWindow_Title=VisualVM Dev
26-
CTL_MainWindow_Title_No_Project=VisualVM Dev
25+
CTL_MainWindow_Title=VisualVM 2.1.2
26+
CTL_MainWindow_Title_No_Project=VisualVM 2.1.2

visualvm/branding/modules/org-netbeans-core.jar/org/netbeans/core/ui/Bundle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
# or visit www.oracle.com if you need additional information or have any
2323
# questions.
2424

25-
LBL_ProductInformation=VisualVM
25+
LBL_ProductInformation=VisualVM 2.1.2

visualvm/core/src/org/graalvm/visualvm/core/Bundle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
OpenIDE-Module-Display-Category=Infrastructure
2727
OpenIDE-Module-Name=VisualVM-Core
2828
OpenIDE-Module-Short-Description=VisualVM main module
29-
com_sun_tools_visualvm_core_update_center=https://visualvm.github.io/uc/dev/updates.xml.gz?{$netbeans.hash.code}
30-
Services/AutoupdateType/com_sun_tools_visualvm_core_update_center.instance=VisualVM Plugins Center
29+
com_sun_tools_visualvm_core_update_center=https://visualvm.github.io/uc/release212/updates.xml.gz?{$netbeans.hash.code}
30+
Services/AutoupdateType/com_sun_tools_visualvm_core_update_center.instance=VisualVM 2.1.2 Plugins Center
3131
Menu/Applications=&Applications
3232
Toolbars/Snapshot=&Snapshot
3333
Toolbars/DataSource=&Data Source

0 commit comments

Comments
 (0)