Created
April 10, 2012 15:45
-
-
Save YounesCheikh/2352289 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
├── pom.xml | |
├── src | |
│ ├── main | |
│ │ ├── java | |
│ │ │ └── jmbs | |
│ │ │ └── common | |
│ │ │ ├── Message.java | |
│ │ │ ├── Project.java | |
│ │ │ ├── RemoteServer.java | |
│ │ │ └── User.java | |
│ │ └── resources | |
│ └── test | |
│ ├── java | |
│ └── resources | |
└── target | |
├── RMI-0.0.1-SNAPSHOT.jar | |
├── classes | |
│ └── jmbs | |
│ └── common | |
│ ├── Message.class | |
│ ├── Project.class | |
│ ├── RemoteServer.class | |
│ └── User.class | |
├── maven-archiver | |
│ └── pom.properties | |
├── rmi-classes | |
│ └── jmbs | |
│ └── common | |
│ └── _RemoteServer_Stub.class <<<<<< ---- I want to add this class in another classpath of other project | |
└── test-classes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment