-
Notifications
You must be signed in to change notification settings - Fork 221
Added plugin-related functions to the Java client #1979
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 2 commits
b0f8d92
6c3ca58
0c896e5
9721b53
fd0e518
ecdaf70
7963092
2c7c1c5
e792f52
b5be0b9
3401e90
c7d2874
354dfbb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,9 @@ | ||
| 02/10/2024 Moritz Vieli <[email protected]> | ||
| * v0.0.23 | ||
moritzvieli marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| - Add OlaClient.reloadPlugins() | ||
| - Add OlaClient.getPluginState() | ||
| - Add OlaClient.setPluginState() | ||
|
|
||
| 04/22/2017 Erez Makavy <[email protected]> | ||
| * v0.0.2 | ||
| - Add OlaClient.getUniverseList() | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| <modelVersion>4.0.0</modelVersion> | ||
| <groupId>ola</groupId> | ||
| <artifactId>ola-java-client</artifactId> | ||
| <version>0.1.0</version> | ||
| <version>0.0.3</version> | ||
moritzvieli marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| <description>Java implementation of OLA RPC</description> | ||
| <properties> | ||
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
|
|
@@ -36,8 +36,8 @@ | |
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <version>2.5.1</version> | ||
| <configuration> | ||
| <source>1.6</source> | ||
| <target>1.6</target> | ||
| <source>1.7</source> | ||
| <target>1.7</target> | ||
|
Comment on lines
-39
to
+40
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this just because 1.6 is out of support?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes. I was unable to compile this Java version with my locally installed Java version 21. 1.7 is still outdated, but a little bit less worse imo. |
||
| </configuration> | ||
| </plugin> | ||
| <plugin> | ||
|
|
||
moritzvieli marked this conversation as resolved.
Show resolved
Hide resolved
|
Uh oh!
There was an error while loading. Please reload this page.