Skip to content
This repository has been archived by the owner on Feb 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #55 from SvenBunge/binderGroup
Browse files Browse the repository at this point in the history
Move all I/O related packages to binding folder
  • Loading branch information
danielwegener committed Dec 8, 2014
2 parents 9999379 + 9fb545d commit aed00fc
Show file tree
Hide file tree
Showing 70 changed files with 15 additions and 8 deletions.
File renamed without changes.
1 change: 1 addition & 0 deletions httpclient/pom.xml → binding/httpclient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<groupId>io.tracee</groupId>
<artifactId>tracee-parent</artifactId>
<version>0.6.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<name>tracee-httpclient</name>
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions httpcomponents/pom.xml → binding/httpcomponents/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<groupId>io.tracee</groupId>
<artifactId>tracee-parent</artifactId>
<version>0.6.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<name>tracee-httpcomponents</name>
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions jaxrs2/pom.xml → binding/jaxrs2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<groupId>io.tracee</groupId>
<artifactId>tracee-parent</artifactId>
<version>0.6.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<name>tracee-jaxrs2</name>
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions jaxws/pom.xml → binding/jaxws/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<groupId>io.tracee</groupId>
<artifactId>tracee-parent</artifactId>
<version>0.6.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<name>tracee-jaxws</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ private TraceeWsHandlerConstants() {
TRACEE_SOAP_HEADER_TAG_NAME);

public static final String TRACEE_HANDLER_CHAIN_URL =
"/io/tracee/jaxws/TraceeHandlerChain.xml";
"/io/tracee/jaxws/TraceeHandlerChain.xml";



Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions jms/pom.xml → binding/jms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<groupId>io.tracee</groupId>
<artifactId>tracee-parent</artifactId>
<version>0.6.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<name>tracee-jms</name>
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions servlet/pom.xml → binding/servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<groupId>io.tracee</groupId>
<artifactId>tracee-parent</artifactId>
<version>0.6.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<name>tracee-servlet</name>
Expand Down
1 change: 1 addition & 0 deletions springmvc/pom.xml → binding/springmvc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<artifactId>tracee-parent</artifactId>
<groupId>io.tracee</groupId>
<version>0.6.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<name>tracee-springmvc</name>
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@
<module>threadlocal-store</module>

<!-- incoming filters -->
<module>servlet</module>
<module>binding/servlet</module>

<!-- outgoing filters -->
<module>httpclient</module>
<module>httpcomponents</module>
<module>binding/httpclient</module>
<module>binding/httpcomponents</module>

<!-- bidi filters -->
<module>jaxrs2</module>
<module>jaxws</module>
<module>jms</module>
<module>binding/jaxrs2</module>
<module>binding/jaxws</module>
<module>binding/jms</module>
<module>binding/springmvc</module>

<!-- examples -->
<module>examples</module>
<module>springmvc</module>
</modules>

<parent>
Expand Down

0 comments on commit aed00fc

Please sign in to comment.