Skip to content

Instantly share code, notes, and snippets.

@YounesCheikh
Created April 10, 2012 15:45
Show Gist options
  • Save YounesCheikh/2352289 to your computer and use it in GitHub Desktop.
Save YounesCheikh/2352289 to your computer and use it in GitHub Desktop.
├── 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