Skip to content

Commit

Permalink
Update Pom to new standard
Browse files Browse the repository at this point in the history
Recompiled and built with updated dependencies.
  • Loading branch information
deathmarine committed Feb 5, 2019
1 parent ba68ee1 commit 26fe3a2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,37 @@
<modelVersion>4.0.0</modelVersion>
<groupId>us.deathmarine</groupId>
<artifactId>luyten</artifactId>
<version>0.5.3</version>
<version>0.5.4</version>
<dependencies>
<dependency>
<groupId>com.fifesoft</groupId>
<artifactId>rsyntaxtextarea</artifactId>
<version>LATEST</version>
<version>3.0.2</version>
</dependency>
<dependency>
<groupId>com.apple</groupId>
<artifactId>AppleJavaExtensions</artifactId>
<version>LATEST</version>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.bitbucket.mstrobel</groupId>
<artifactId>procyon-core</artifactId>
<version>LATEST</version>
<version>0.5.33</version>
</dependency>
<dependency>
<groupId>org.bitbucket.mstrobel</groupId>
<artifactId>procyon-expressions</artifactId>
<version>LATEST</version>
<version>0.5.33</version>
</dependency>
<dependency>
<groupId>org.bitbucket.mstrobel</groupId>
<artifactId>procyon-reflection</artifactId>
<version>LATEST</version>
<version>0.5.33</version>
</dependency>
<dependency>
<groupId>org.bitbucket.mstrobel</groupId>
<artifactId>procyon-compilertools</artifactId>
<version>LATEST</version>
<version>0.5.33</version>
</dependency>
<!--
<dependency>
Expand Down
8 changes: 5 additions & 3 deletions src/us/deathmarine/luyten/MainMenuBar.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
import javax.swing.KeyStroke;
import javax.swing.text.DefaultEditorKit;

import org.fife.ui.rsyntaxtextarea.RSyntaxTextArea;

import com.strobel.Procyon;
import com.strobel.decompiler.DecompilerSettings;
import com.strobel.decompiler.languages.Language;
Expand Down Expand Up @@ -573,14 +575,14 @@ public void actionPerformed(ActionEvent event) {
link.addMouseListener(new LinkListener(procyon, link));
pane.add(link);
pane.add(new JLabel("Version: " + Procyon.version()));
pane.add(new JLabel("(c) 2016 Mike Strobel"));
pane.add(new JLabel("(c) 2018 Mike Strobel"));
String rsyntax = "https://github.com/bobbylight/RSyntaxTextArea";
link = new JLabel("<HTML><FONT color=\"#000099\"><U>" + rsyntax + "</U></FONT></HTML>");
link.setCursor(new Cursor(Cursor.HAND_CURSOR));
link.addMouseListener(new LinkListener(rsyntax, link));
pane.add(link);
pane.add(new JLabel("Version: 2.6.1"));
pane.add(new JLabel("(c) 2017 Robert Futrell"));
pane.add(new JLabel("Version: 3.0.2"));
pane.add(new JLabel("(c) 2019 Robert Futrell"));
pane.add(new JLabel(" "));
JOptionPane.showMessageDialog(null, pane);
}
Expand Down

0 comments on commit 26fe3a2

Please sign in to comment.