-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mohammad Rezaei
committed
Sep 13, 2016
1 parent
b05fcf2
commit 563b11c
Showing
11 changed files
with
537 additions
and
145 deletions.
There are no files selected for viewing
This file contains 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!-- | ||
Copyright 2016 Goldman Sachs. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
--> | ||
|
||
<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>com.goldmansachs.reladomo</groupId> | ||
<artifactId>reladomo-gen-util</artifactId> | ||
<version>@reladomo.version@</version> | ||
<packaging>bundle</packaging> | ||
|
||
<name>Reladomo Generator Utilities</name> | ||
<description>Reladomo generator utilities for creating for round trip ddl/xml generation.</description> | ||
<url>https://github.com/goldmansachs/reladomo</url> | ||
|
||
<licenses> | ||
<license> | ||
<name>The Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Mohammad Rezaei</name> | ||
<email>[email protected]</email> | ||
<organization>Goldman Sachs</organization> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<url>https://github.com/goldmansachs/reladomo</url> | ||
<connection>scm:git:https://github.com/goldmansachs/reladomo.git</connection> | ||
<developerConnection>scm:git:https://github.com/goldmansachs/reladomo.git</developerConnection> | ||
</scm> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.goldmansachs.reladomo</groupId> | ||
<artifactId>reladomo</artifactId> | ||
<version>@reladomo.version@</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.goldmansachs.reladomo</groupId> | ||
<artifactId>reladomogen</artifactId> | ||
<version>@reladomo.version@</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!-- | ||
Copyright 2016 Goldman Sachs. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
--> | ||
|
||
<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>com.goldmansachs.reladomo</groupId> | ||
<artifactId>reladomo-test-util</artifactId> | ||
<version>@reladomo.version@</version> | ||
<packaging>bundle</packaging> | ||
|
||
<name>Reladomo Test Utilities</name> | ||
<description>Reladomo test utilities faciliate writing tests for projects using Reladomo.</description> | ||
<url>https://github.com/goldmansachs/reladomo</url> | ||
|
||
<licenses> | ||
<license> | ||
<name>The Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Mohammad Rezaei</name> | ||
<email>[email protected]</email> | ||
<organization>Goldman Sachs</organization> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<url>https://github.com/goldmansachs/reladomo</url> | ||
<connection>scm:git:https://github.com/goldmansachs/reladomo.git</connection> | ||
<developerConnection>scm:git:https://github.com/goldmansachs/reladomo.git</developerConnection> | ||
</scm> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.goldmansachs.reladomo</groupId> | ||
<artifactId>reladomo</artifactId> | ||
<version>@reladomo.version@</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.h2database</groupId> | ||
<artifactId>h2</artifactId> | ||
<version>1.3.169</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,41 +20,66 @@ | |
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>com.gs.mithra</groupId> | ||
<artifactId>mithra</artifactId> | ||
<version>@mithra.version@</version> | ||
<packaging>jar</packaging> | ||
<groupId>com.goldmansachs.reladomo</groupId> | ||
<artifactId>reladomo</artifactId> | ||
<version>@reladomo.version@</version> | ||
<packaging>bundle</packaging> | ||
|
||
<name>Reladomo</name> | ||
<description>Reladomo is an object-relational mapping framework.</description> | ||
<url>https://github.com/goldmansachs/reladomo</url> | ||
|
||
<licenses> | ||
<license> | ||
<name>The Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Mohammad Rezaei</name> | ||
<email>[email protected]</email> | ||
<organization>Goldman Sachs</organization> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<url>https://github.com/goldmansachs/reladomo</url> | ||
<connection>scm:git:https://github.com/goldmansachs/reladomo.git</connection> | ||
<developerConnection>scm:git:https://github.com/goldmansachs/reladomo.git</developerConnection> | ||
</scm> | ||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>com.goldmansachs</groupId> | ||
<artifactId>gs-collections-api</artifactId> | ||
<version>@gs-collections.version@</version> | ||
<version>5.1.0</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.goldmansachs</groupId> | ||
<artifactId>gs-collections</artifactId> | ||
<version>@gs-collections.version@</version> | ||
<version>5.1.0</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>javax.transaction</groupId> | ||
<artifactId>jta</artifactId> | ||
<version>1.1</version> | ||
<groupId>org.apache.geronimo.specs</groupId> | ||
<artifactId>geronimo-jta_1.1_spec</artifactId> | ||
<version>1.1.1</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>joda-time</groupId> | ||
<artifactId>joda-time</artifactId> | ||
<version>2.2</version> | ||
<version>2.9.4</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>@slf4j.version@</version> | ||
<version>1.7.21</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!-- | ||
Copyright 2016 Goldman Sachs. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
--> | ||
|
||
<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>com.goldmansachs.reladomo</groupId> | ||
<artifactId>reladomogen</artifactId> | ||
<version>@reladomo.version@</version> | ||
<packaging>bundle</packaging> | ||
|
||
<name>Reladomo Generator</name> | ||
<description>Reladomo generator is responsible for generating abstract classes used by Reladomo objects.</description> | ||
<url>https://github.com/goldmansachs/reladomo</url> | ||
|
||
<licenses> | ||
<license> | ||
<name>The Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Mohammad Rezaei</name> | ||
<email>[email protected]</email> | ||
<organization>Goldman Sachs</organization> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<url>https://github.com/goldmansachs/reladomo</url> | ||
<connection>scm:git:https://github.com/goldmansachs/reladomo.git</connection> | ||
<developerConnection>scm:git:https://github.com/goldmansachs/reladomo.git</developerConnection> | ||
</scm> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.ant</groupId> | ||
<artifactId>ant</artifactId> | ||
<version>1.9.6</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
setlocal | ||
cd ../target | ||
gpg -ab reladomo-16.0.0-javadoc.jar | ||
gpg -ab reladomo-16.0.0-sources.jar | ||
gpg -ab reladomo-16.0.0.jar | ||
gpg -ab reladomo-16.0.0.pom | ||
gpg -ab reladomo-gen-util-16.0.0-javadoc.jar | ||
gpg -ab reladomo-gen-util-16.0.0-sources.jar | ||
gpg -ab reladomo-gen-util-16.0.0.jar | ||
gpg -ab reladomo-gen-util-16.0.0.pom | ||
gpg -ab reladomo-test-util-16.0.0-javadoc.jar | ||
gpg -ab reladomo-test-util-16.0.0-sources.jar | ||
gpg -ab reladomo-test-util-16.0.0.jar | ||
gpg -ab reladomo-test-util-16.0.0.pom | ||
gpg -ab reladomogen-16.0.0-javadoc.jar | ||
gpg -ab reladomogen-16.0.0-sources.jar | ||
gpg -ab reladomogen-16.0.0.jar | ||
gpg -ab reladomogen-16.0.0.pom |
This file contains 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
File renamed without changes.