Skip to content

Commit a5c44b7

Browse files
authored
Merge pull request #21 from qtc-de/develop
Remove Release Candidate Artifacts
2 parents e6755f4 + b3d119a commit a5c44b7

4 files changed

Lines changed: 8 additions & 11 deletions

File tree

beanshooter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>de.qtc.beanshooter</groupId>
66
<artifactId>reactor</artifactId>
7-
<version>3.0.0-rc.2</version>
7+
<version>3.0.0</version>
88
</parent>
99

1010
<artifactId>beanshooter</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>reactor</artifactId>
66
<name>reactor</name>
77
<packaging>pom</packaging>
8-
<version>3.0.0-rc.2</version>
8+
<version>3.0.0</version>
99
<description>JMX enumeration and attacking tool</description>
1010

1111
<modules>

tonka-bean/README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,11 @@ The *tonka bean* implements the following interface:
1616
```java
1717
public interface TonkaBeanMBean
1818
{
19-
public String ping();
20-
public String username();
21-
public File toServerDir(File cwd) throws IOException;
22-
23-
public byte[] executeCommand(String[] cmd, File cwd, Map<String,String> env) throws IOException, InterruptedException ;
24-
public void executeCommandBackground(String[] cmd, File cwd, Map<String,String> env) throws IOException ;
25-
19+
public String version();
20+
public String[] shellInit();
21+
public String toServerDir(String current, String change) throws IOException, InvalidPathException;
2622
public byte[] downloadFile(String filename) throws IOException;
27-
public String uploadFile(String destination, byte[] content) throws IOException;
23+
public String uploadFile(String destination, String filename, byte[] content) throws IOException;
24+
public byte[] executeCommand(String[] cmd, String cwd, Map<String,String> env, boolean background) throws IOException, InterruptedException;
2825
}
2926
```

tonka-bean/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>de.qtc.beanshooter</groupId>
66
<artifactId>reactor</artifactId>
7-
<version>3.0.0-rc.2</version>
7+
<version>3.0.0</version>
88
</parent>
99

1010
<artifactId>tonka-bean</artifactId>

0 commit comments

Comments
 (0)