Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shrinkdesc 92 #53

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
2b5dc86
[SHRINKDESC-92] Create tool for XSD->Java generator
ralfbattenfeld Oct 2, 2011
720226b
[SHRINKDESC-92] Create tool for XSD->Java generator
ralfbattenfeld Oct 2, 2011
a1ca443
[SHRINKDESC-92] Create tool for XSD->Java generator
ralfbattenfeld Oct 3, 2011
b01cbf7
[SHRINKDESC-92] Create tool for XSD->Java generator
ralfbattenfeld Oct 8, 2011
fcb2717
[SHRINKDESC-92] Create tool for XSD->Java generator - supporting conn…
ralfbattenfeld Oct 9, 2011
d6fd0d6
[SHRINKDESC-92] Create tool for XSD->Java generator - supporting conn…
ralfbattenfeld Oct 9, 2011
31727c2
[SHRINKDESC-92] .gitignore on log.txt in CLI module
ALRubinger Oct 11, 2011
dabf218
[SHRINKDESC-92] Update version for branch/fork
ALRubinger Oct 11, 2011
a4a4f34
[SHRINKDESC-92] Create tool for XSD->Java generator - added cli-plugi…
ralfbattenfeld Oct 16, 2011
13e76b5
SHRINKDESC-92 Metadata Parser Plugin
ralfbattenfeld Dec 31, 2011
4d7f955
SHRINKDESC-92 Metadata-Plugin
ralfbattenfeld Jan 7, 2012
e703645
SHRINKDESC-92 Development of Metadata Parser
ralfbattenfeld Jan 9, 2012
1f28446
SHRINKDESC-92 correcting POM
ralfbattenfeld Jan 9, 2012
1bcd8de
[SHRINKDESC-92] After rebase, correct the version of the new depchain…
ALRubinger Jan 12, 2012
f290ba5
[SHRINKDESC-92] Ensure cached generated files are not in the index an…
ALRubinger Jan 12, 2012
b75d959
[SHRINKDESC-92] Configure m2e to not throw errors for the jboss-descr…
ALRubinger Jan 12, 2012
5c2da4b
SHRINKDESC-92 supporting jetty.dtd
ralfbattenfeld Jan 21, 2012
9df87fd
[SHRINKDESC-92] Adding orm_1_0. xsd
ralfbattenfeld Jan 22, 2012
633c05b
[SHRINKDESC-92] Adding orm_1_0. xsd
ralfbattenfeld Jan 22, 2012
0aa478d
[SHRINDESC-92] Making the plugin multi descriptor capable
ralfbattenfeld Jan 24, 2012
cd28d5e
[SHRINKDESC-92] Adding Java EE 6 Descriptors
ralfbattenfeld Feb 2, 2012
effd060
[SHRINKDESC-92] Supporting Java EE 6 descriptors
ralfbattenfeld Feb 10, 2012
540c1ea
[SHRINKDESC-92] Supporting Java EE 6 descriptors
ralfbattenfeld Feb 10, 2012
6afada8
[SHRINKDESC-92] Metadata-Plugin supports all descriptors
ralfbattenfeld Feb 14, 2012
0ad0e8a
[SHRINKDESC-92] All descriptors are now generated by the metadata-plugin
ralfbattenfeld Feb 17, 2012
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
.settings
target
bin
metadata-parser-test/src/main/resources/META-INF
metadata-parser-test/src/test/java
2 changes: 1 addition & 1 deletion api-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.shrinkwrap.descriptors</groupId>
<artifactId>shrinkwrap-descriptors-parent</artifactId>
<version>1.2.0-alpha-3-SNAPSHOT</version>
<version>1.2.0-SD92-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion api-javaee/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.shrinkwrap.descriptors</groupId>
<artifactId>shrinkwrap-descriptors-parent</artifactId>
<version>1.2.0-alpha-3-SNAPSHOT</version>
<version>1.2.0-SD92-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion api-jboss/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jboss.shrinkwrap.descriptors</groupId>
<artifactId>shrinkwrap-descriptors-parent</artifactId>
<version>1.2.0-alpha-3-SNAPSHOT</version>
<version>1.2.0-SD92-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 2 additions & 0 deletions api-misc/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
src/main/java

35 changes: 35 additions & 0 deletions api-misc/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version="1.0"?>
<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">

<!-- Parent -->
<parent>
<groupId>org.jboss.shrinkwrap.descriptors</groupId>
<artifactId>shrinkwrap-descriptors-parent</artifactId>
<version>1.2.0-SD92-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>

<!-- Artifact Configuration -->
<artifactId>shrinkwrap-descriptors-api-misc</artifactId>
<name>ShrinkWrap Descriptors Generated Misc API</name>
<description>Client View of the ShrinkWrap Descriptors Project</description>

<dependencies>

<dependency>
<groupId>org.jboss.shrinkwrap.descriptors</groupId>
<artifactId>shrinkwrap-descriptors-api-base</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.descriptors</groupId>
<artifactId>shrinkwrap-descriptors-gen</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>

</project>
2 changes: 1 addition & 1 deletion depchain/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.shrinkwrap.descriptors</groupId>
<artifactId>shrinkwrap-descriptors-parent</artifactId>
<version>1.2.0-alpha-3-SNAPSHOT</version>
<version>1.2.0-SD92-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Loading