Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
joram
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
joram
joram
Commits
e809973d
Commit
e809973d
authored
Sep 22, 2010
by
afreyssin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1st version of JASP : Joram Access with STOMP Protocol.
parent
4e95e275
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
114 additions
and
6 deletions
+114
-6
joram/joram/pom.xml
joram/joram/pom.xml
+7
-6
joram/joram/tools/.project
joram/joram/tools/.project
+23
-0
joram/joram/tools/jasp/pom.xml
joram/joram/tools/jasp/pom.xml
+63
-0
joram/joram/tools/pom.xml
joram/joram/tools/pom.xml
+21
-0
No files found.
joram/joram/pom.xml
View file @
e809973d
...
...
@@ -13,12 +13,13 @@
<groupId>
org.objectweb.joram
</groupId>
<version>
5.4.0.54-SNAPSHOT
</version>
</parent>
<modules>
<module>
shared
</module>
<module>
client
</module>
<module>
mom
</module>
<module>
security
</module>
<module>
tools
</module>
</modules>
<modules>
<module>
shared
</module>
<module>
client
</module>
<module>
mom
</module>
<module>
security
</module>
</modules>
</project>
\ No newline at end of file
joram/joram/tools/.project
0 → 100644
View file @
e809973d
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>
tools
</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>
org.eclipse.jdt.core.javabuilder
</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>
org.maven.ide.eclipse.maven2Builder
</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>
org.eclipse.jdt.core.javanature
</nature>
<nature>
org.maven.ide.eclipse.maven2Nature
</nature>
</natures>
</projectDescription>
joram/joram/tools/jasp/pom.xml
0 → 100644
View file @
e809973d
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
org.objectweb.joram
</groupId>
<artifactId>
joram-tools-jasp
</artifactId>
<packaging>
bundle
</packaging>
<name>
JORAM :: joram :: tools :: jasp
</name>
<description>
Builds the Joram jasp project.
</description>
<parent>
<groupId>
org.objectweb.joram
</groupId>
<artifactId>
joram-tools
</artifactId>
<version>
5.4.0.54-SNAPSHOT
</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>
org.apache.felix
</groupId>
<artifactId>
maven-bundle-plugin
</artifactId>
<extensions>
true
</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>
${pom.artifactId}
</Bundle-SymbolicName>
<Bundle-Activator>
org.objectweb.joram.tools.jasp.osgi.Activator
</Bundle-Activator>
<Export-Package>
org.objectweb.joram.tools.jasp
</Export-Package>
<Embed-Dependency>
stompconnect|commons-logging;scope=compile|runtime;inline=true
</Embed-Dependency>
<Embed-Transitive>
true
</Embed-Transitive>
<Import-Package>
fr.dyade.aaa.common,
javax.jms,
javax.naming,
javax.transaction.xa,
org.objectweb.util.monolog,
org.objectweb.util.monolog.api
</Import-Package>
<DynamicImport-Package>
*
</DynamicImport-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>
org.apache.geronimo.specs
</groupId>
<artifactId>
geronimo-jms_1.1_spec
</artifactId>
</dependency>
<dependency>
<groupId>
org.objectweb.joram
</groupId>
<artifactId>
joram-client-jms
</artifactId>
<version>
${project.version}
</version>
</dependency>
<dependency>
<groupId>
org.codehaus.stomp
</groupId>
<artifactId>
stompconnect
</artifactId>
<version>
1.0
</version>
</dependency>
</dependencies>
<modules>
</modules>
</project>
\ No newline at end of file
joram/joram/tools/pom.xml
0 → 100644
View file @
e809973d
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
org.objectweb.joram
</groupId>
<artifactId>
joram-tools
</artifactId>
<packaging>
pom
</packaging>
<name>
JORAM :: joram :: tools
</name>
<description>
Builds the Joram tools project.
</description>
<parent>
<groupId>
org.objectweb.joram
</groupId>
<artifactId>
joram
</artifactId>
<version>
5.4.0.54-SNAPSHOT
</version>
</parent>
<modules>
<module>
jasp
</module>
</modules>
</project>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment