Skip to content

Commit 9cda38a

Browse files
committed
small changes preparing the release
1 parent c69d537 commit 9cda38a

File tree

3 files changed

+41
-41
lines changed

3 files changed

+41
-41
lines changed

LICENSE.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ Feedback
2929

3030
We encourage your feedback and suggestions and want to use your feedback to
3131
improve the Software. Send all such feedback to:
32-
<jwu@gmx.ch>
32+
<gcviewer@gmx.ch>
3333

3434
For more information on tagtraum industries incorporated and GCViewer
3535
please see <http://www.tagtraum.com/>. For more information on the latest
36-
development of GCViewer please see <http://github.com/chewiebug/GCViewer>.
36+
development of GCViewer please see <http://github.com/chewiebug/GCViewer/wiki>.

README

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -257,19 +257,13 @@ Therefore values like 'Total Time', 'Throughput', and 'Freed Mem/Min'
257257
cannot be calculated.
258258

259259

260-
Sun /Oracle JDK 1.6 (a.k.a. Java 6)
260+
Sun / Oracle JDK 1.6 / 1.7 (a.k.a. Java 6 / 7)
261261
---------------------------
262262

263263
CMS and G1 collector sometimes mix concurrent events with stop the world
264-
collections in the output. In a few cases the parser can recover from
264+
collections in the output. In some cases the parser can recover from
265265
such mixed lines, sometimes it can't and will show an error message.
266266

267-
Sun / Oracle JDK 1.7 (a.k.a. Java 7)
268-
---------------------------
269-
270-
Logs generated with -XX:+UseG1GC -XX:+PrintGCDetails can only be parsed
271-
up to 1.7.0_01. Jdk 1.7.0_02 switched the format of the memory print out
272-
in the detailed events - a lot of warnings are displayed.
273267

274268
BEA JRockit 1.4.2/1.5
275269
---------------------
@@ -301,7 +295,7 @@ Start of log / absolute times
301295
If you happen to know when the application and GC log was started, you
302296
can specify this time by right-clicking on the time ruler and entering
303297
a start time.
304-
Sun VMs: IF -XX:+PrintGCDateStamps was used, the proposed start time is
298+
Sun / Oracle VMs: If -XX:+PrintGCDateStamps was used, the proposed start time is
305299
read from the gc log file.
306300

307301
Bug reports

pom.xml

Lines changed: 36 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,15 @@
1717
</developer>
1818
<developer>
1919
<name>Jörg Wüthrich</name>
20-
<email>jwu@gmx.ch</email>
20+
<email>gcviewer@gmx.ch</email>
2121
<url>http://github.com/chewiebug/GCViewer</url>
2222
</developer>
23+
<developer>
24+
<name>Cka3o4Huk</name>
25+
</developer>
26+
<developer>
27+
<name>Johan Kaving</name>
28+
</developer>
2329
<developer>
2430
<name>Serafín Sedano</name>
2531
</developer>
@@ -59,10 +65,10 @@
5965
<version>2.5</version>
6066
<configuration>
6167
<encoding>UTF-8</encoding>
62-
</configuration>
68+
</configuration>
6369
</plugin>
6470
<plugin>
65-
<artifactId>maven-antrun-plugin</artifactId>
71+
<artifactId>maven-antrun-plugin</artifactId>
6672
<version>1.7</version>
6773
</plugin>
6874
</plugins>
@@ -98,9 +104,6 @@
98104
</archive>
99105
<excludes>
100106
<exclude>**/*.psd</exclude>
101-
<!-- version.properties is only a template; the productive one is generated
102-
to where the other ressources are -->
103-
<exclude>version.properties</exclude>
104107
</excludes>
105108
</configuration>
106109
</plugin>
@@ -149,30 +152,33 @@
149152
</executions>
150153
</plugin>
151154

152-
<plugin>
153-
<groupId>org.apache.maven.plugins</groupId>
154-
<artifactId>maven-antrun-plugin</artifactId>
155-
<executions>
156-
<execution>
157-
<id>mac-distribution</id>
158-
<phase>package</phase>
159-
<configuration>
160-
<target>
161-
<mkdir dir="target" />
162-
<zip destfile="target/gcviewer_mac_${project.version}.zip">
163-
<zipfileset dir="src/main/mac" excludes="**/JavaApplicationStub" />
164-
<zipfileset dir="src/main/mac/GCViewer.app/Contents/MacOS/" prefix="GCViewer.app/Contents/MacOS/" filemode="755" />
165-
<zipfileset dir="target" includes="gcviewer-${project.version}.jar" prefix="GCViewer.app/Contents/Resources/"/>
166-
<zipfileset dir="target/mac" includes="Info.plist" prefix="GCViewer.app/Contents/"/>
167-
</zip>
168-
</target>
169-
</configuration>
170-
<goals>
171-
<goal>run</goal>
172-
</goals>
173-
</execution>
174-
</executions>
175-
</plugin>
155+
<plugin>
156+
<groupId>org.apache.maven.plugins</groupId>
157+
<artifactId>maven-antrun-plugin</artifactId>
158+
<executions>
159+
<execution>
160+
<id>mac-distribution</id>
161+
<phase>package</phase>
162+
<configuration>
163+
<target>
164+
<mkdir dir="target" />
165+
<zip destfile="target/gcviewer_mac_${project.version}.zip">
166+
<zipfileset dir="src/main/mac" excludes="**/JavaApplicationStub" />
167+
<zipfileset dir="src/main/mac/GCViewer.app/Contents/MacOS/"
168+
prefix="GCViewer.app/Contents/MacOS/" filemode="755" />
169+
<zipfileset dir="target" includes="gcviewer-${project.version}.jar"
170+
prefix="GCViewer.app/Contents/Resources/" />
171+
<zipfileset dir="target/mac" includes="Info.plist"
172+
prefix="GCViewer.app/Contents/" />
173+
</zip>
174+
</target>
175+
</configuration>
176+
<goals>
177+
<goal>run</goal>
178+
</goals>
179+
</execution>
180+
</executions>
181+
</plugin>
176182
</plugins>
177183
</build>
178184
</project>

0 commit comments

Comments
 (0)