Skip to content

Commit 98cdc0f

Browse files
authored
Merge pull request #85 from asebak/feature/fix-travis
few fixes in code
2 parents 42b5fdb + d6dd589 commit 98cdc0f

27 files changed

+108
-284
lines changed

.idea/compiler.xml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
![alt text][overviewlogo]
22
=============================
3-
[![Build Status](https://travis-ci.org/asebak/embeddedlinux-jvmdebugger-intellij.svg?branch=master)](https://travis-ci.org/asebak/embeddedlinux-jvmdebugger-intellij)
43

54
```
65
https://plugins.jetbrains.com/plugin/7738
@@ -10,7 +9,7 @@ https://plugins.jetbrains.com/plugin/7738
109

1110
Embedded Linux JVM Debugger is a Plugin for IntelliJ IDEA that makes it easier to develop Embedded Java applications for embedded systems running on any variant of embedded linux. It easily integrates any embedded system such as the raspberry pi or beaglebone black. As long as java can run on the embedded device and ssh protocol is enabled than it's never been simpler to develop embedded java applications.
1211

13-
- Supports Java 6+ with Virtual Machine and Program Arguments.
12+
- Supports Java 11+ with Virtual Machine and Program Arguments.
1413
- Supports Multi-Module projects in IntelliJ.
1514
- Custom Run and Debug configurations for your hardware board.
1615
- Works cross platforms on the host machine whether that is Windows, Linux or Mac platforms.
@@ -43,17 +42,17 @@ $ sudo sh ./ci-build.sh
4342
* Mockito/PowerMockito/JUnit
4443
* Jsch
4544
* Commons Compress
46-
* IntelliJ SDK 2016 + Java 8 (since release 1.20)
45+
* IntelliJ SDK 2019 + Java 11 (since release 1.24)
4746

4847
### Development
4948

5049
If you want to contribute and add functionality, make sure to add unit tests if they are needed.
5150

52-
[overviewlogo]: https://raw.githubusercontent.com/asebak/embeddedlinux-jvmdebugger-intellij/master/Resources/documentation/embeddedlinuxjvm.png
51+
[overviewlogo]: https://raw.githubusercontent.com/asebak/embeddedlinux-jvmdebugger-intellij/master/src/main/resources/documentation/embeddedlinuxjvm.png
5352
"Overview"
5453

55-
[logo]: https://raw.githubusercontent.com/asebak/embeddedlinux-jvmdebugger-intellij/master/Resources/documentation/sample1.png
54+
[logo]: https://raw.githubusercontent.com/asebak/embeddedlinux-jvmdebugger-intellij/master/src/main/resources/documentation/sample1.png
5655
"Sample Build Output"
5756

58-
[config]: https://raw.githubusercontent.com/asebak/embeddedlinux-jvmdebugger-intellij/master/Resources/documentation/sample2.png
57+
[config]: https://raw.githubusercontent.com/asebak/embeddedlinux-jvmdebugger-intellij/master/src/main/resources/documentation/sample2.png
5958
"Sample Run Configuration"

Resources/bbb.png

-903 Bytes
Binary file not shown.

Resources/bbbmain.ftl

Lines changed: 0 additions & 48 deletions
This file was deleted.

Resources/pi4j.zip

-440 KB
Binary file not shown.

Resources/rpimain.ftl

Lines changed: 0 additions & 111 deletions
This file was deleted.

build.gradle

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,23 @@ repositories {
1717
}
1818

1919
dependencies {
20-
compileOnly files('lib/lombok.jar')
21-
annotationProcessor files('lib/lombok.jar')
2220

23-
compile files('lib/commons-compress-1.8.jar')
24-
compile files('lib/freemarker.jar')
25-
compile files('lib/jsch-0.1.55.jar')
21+
compileOnly 'org.projectlombok:lombok:1.18.22'
22+
annotationProcessor 'org.projectlombok:lombok:1.18.22'
23+
24+
compile 'org.apache.commons:commons-compress:1.21'
25+
compile 'org.freemarker:freemarker:2.3.31'
26+
compile 'com.jcraft:jsch:0.1.55'
27+
28+
testCompile 'junit:junit:4.13.2'
29+
testCompile 'org.mockito:mockito-all:1.10.19'
30+
testCompile 'org.powermock:powermock-module-junit4:2.0.9'
31+
testCompile 'org.powermock:powermock-api-mockito:1.7.4'
32+
2633

27-
testCompile files('lib/junit-4.11.jar')
28-
testCompile files('lib/mockito-all-1.9.5.jar')
29-
testCompile files('lib/powermock-mockito-1.5.5-full.jar')
3034
}
3135

32-
def intellijVersion = System.getenv().getOrDefault("IDEA_VERSION", "2019.3.5")
36+
def intellijVersion = System.getenv().getOrDefault("IDEA_VERSION", "213.7172.25")
3337

3438
intellij {
3539
version = intellijVersion

lib/commons-compress-1.8.jar

-356 KB
Binary file not shown.

lib/freemarker.jar

-1.4 MB
Binary file not shown.

lib/jsch-0.1.55.jar

-276 KB
Binary file not shown.

0 commit comments

Comments
 (0)