Create airavata-services module with profile-service module
Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/efc2b693 Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/efc2b693 Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/efc2b693 Branch: refs/heads/develop Commit: efc2b693ef02c9c12740738cd36c9d2d7963bde6 Parents: d1ae264 Author: Gourav Shenoy <[email protected]> Authored: Sat Mar 4 22:18:44 2017 -0500 Committer: Gourav Shenoy <[email protected]> Committed: Sat Mar 4 22:18:44 2017 -0500 ---------------------------------------------------------------------- airavata-services/pom.xml | 26 ++++++++++++++++++++++++++ airavata-services/profile-service/pom.xml | 21 +++++++++++++++++++++ pom.xml | 1 + 3 files changed, 48 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/efc2b693/airavata-services/pom.xml ---------------------------------------------------------------------- diff --git a/airavata-services/pom.xml b/airavata-services/pom.xml new file mode 100644 index 0000000..c3a5531 --- /dev/null +++ b/airavata-services/pom.xml @@ -0,0 +1,26 @@ +<?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/xsd/maven-4.0.0.xsd"> + <parent> + <artifactId>airavata</artifactId> + <groupId>org.apache.airavata</groupId> + <version>0.17-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + + <modelVersion>4.0.0</modelVersion> + <artifactId>airavata-services</artifactId> + <packaging>pom</packaging> + <name>Airavata Services</name> + <url>http://airavata.apache.org/</url> + + <modules> + <module>profile-service</module> + </modules> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> + </properties> +</project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata/blob/efc2b693/airavata-services/profile-service/pom.xml ---------------------------------------------------------------------- diff --git a/airavata-services/profile-service/pom.xml b/airavata-services/profile-service/pom.xml new file mode 100644 index 0000000..0396bc5 --- /dev/null +++ b/airavata-services/profile-service/pom.xml @@ -0,0 +1,21 @@ +<?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/xsd/maven-4.0.0.xsd"> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.airavata</groupId> + <artifactId>airavata-services</artifactId> + <version>0.17-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + + <name>Profile Service</name> + <artifactId>profile-service</artifactId> + <packaging>jar</packaging> + <url>http://airavata.apache.org/</url> + + +</project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/airavata/blob/efc2b693/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index e31cd92..d32cda8 100644 --- a/pom.xml +++ b/pom.xml @@ -652,6 +652,7 @@ <module>modules/sharing-registry</module> <module>modules/cluster-monitoring</module> <module>modules/user-profile-migration</module> + <module>airavata-services</module> <!-- Deprecated Modules--> <!--<module>modules/integration-tests</module>--> <!--<module>modules/workflow-model</module>-->
