Skip to content

Commit

Permalink
Still working on getting dist to build. Something going wrong in java…
Browse files Browse the repository at this point in the history
…doc.
  • Loading branch information
andrewcmyers committed Jan 7, 2022
1 parent fd24395 commit 2518a93
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 17 deletions.
3 changes: 1 addition & 2 deletions META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: Polyglot
Main-Class: polyglot.main.Main
Bundle-SymbolicName: polyglot
Bundle-Version: 2.7.1
Bundle-Version: 2.8.0
Bundle-Vendor: Polyglot project group
Export-Package: java_cup.runtime,
polyglot.ast,
Expand Down Expand Up @@ -32,7 +32,6 @@ Export-Package: java_cup.runtime,
polyglot.main,
polyglot.parse,
polyglot.pth,
polyglot.pth.polyglot,
polyglot.qq,
polyglot.translate,
polyglot.translate.ext,
Expand Down
1 change: 1 addition & 0 deletions build.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#Fri, 07 Jan 2022 12:03:21 -0500
version.major=2
version.minor=8
version.patch=0
Expand Down
1 change: 1 addition & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -927,6 +927,7 @@
<include name="polyglot/efg/**"/>
</packageset>
<classpath refid="standard.classpath"/>
<classpath refid="pth.classpath"/>
</javadoc>
</target>

Expand Down
20 changes: 5 additions & 15 deletions src/polyglot/frontend/JLVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,17 @@
*/
public class JLVersion extends polyglot.main.Version {
@Override
public String name() {
return "jl";
}
public String name() { return "jl"; }

@Override
public int major() {
return 2;
}
public int major() { return 2; }

@Override
public int minor() {
return 7;
}
public int minor() { return 9; }

@Override
public int patch_level() {
return 1;
}
public int patch_level() { return 0; }

@Override
public String toString() {
return "2.7.1 (2016-06-23 21:13:50)";
}
public String toString() { return "2.9.0 (2022-01-07 17:03:21)"; }
}

0 comments on commit 2518a93

Please sign in to comment.