You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2019/10/11 20:42:10 UTC

[airavata-custos] 03/24: Fixing a typo in module naming

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-custos.git

commit 082aec18edc54c49bbecaeb89ea6fccbc3ef3bf9
Author: Dimuthu Wannipurage <di...@gmail.com>
AuthorDate: Tue Jul 9 01:19:16 2019 -0400

    Fixing a typo in module naming
---
 {credntial-store => credential-store}/credential-api/pom.xml          | 4 ++--
 .../src/main/java/org/apache/custos/credential/api/Application.java   | 0
 .../custos/credential/api/controllers/SSHCredentialsController.java   | 1 +
 .../org/apache/custos/credential/api/resources/SSHCredential.java     | 0
 {credntial-store => credential-store}/credential-core/pom.xml         | 4 ++--
 .../org/apache/airavata/custos/credentials/BaseCredentialEntity.java  | 0
 .../apache/airavata/custos/credentials/ssh/SSHCredentialEntity.java   | 0
 .../src/main/java/org/apache/airavata/custos/vault/VaultManager.java  | 0
 .../java/org/apache/airavata/custos/vault/annotations/VaultPath.java  | 0
 {credntial-store => credential-store}/pom.xml                         | 4 ++--
 pom.xml                                                               | 2 +-
 11 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/credntial-store/credential-api/pom.xml b/credential-store/credential-api/pom.xml
similarity index 95%
rename from credntial-store/credential-api/pom.xml
rename to credential-store/credential-api/pom.xml
index f559740..024f783 100644
--- a/credntial-store/credential-api/pom.xml
+++ b/credential-store/credential-api/pom.xml
@@ -3,7 +3,7 @@
          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>credntial-store</artifactId>
+        <artifactId>credential-store</artifactId>
         <groupId>org.apache.airavata.custos</groupId>
         <version>0.01-SNAPSHOT</version>
     </parent>
@@ -37,4 +37,4 @@
         </plugins>
     </build>
 
-</project>
\ No newline at end of file
+</project>
diff --git a/credntial-store/credential-api/src/main/java/org/apache/custos/credential/api/Application.java b/credential-store/credential-api/src/main/java/org/apache/custos/credential/api/Application.java
similarity index 100%
rename from credntial-store/credential-api/src/main/java/org/apache/custos/credential/api/Application.java
rename to credential-store/credential-api/src/main/java/org/apache/custos/credential/api/Application.java
diff --git a/credntial-store/credential-api/src/main/java/org/apache/custos/credential/api/controllers/SSHCredentialsController.java b/credential-store/credential-api/src/main/java/org/apache/custos/credential/api/controllers/SSHCredentialsController.java
similarity index 99%
rename from credntial-store/credential-api/src/main/java/org/apache/custos/credential/api/controllers/SSHCredentialsController.java
rename to credential-store/credential-api/src/main/java/org/apache/custos/credential/api/controllers/SSHCredentialsController.java
index cc5094f..e78a489 100644
--- a/credntial-store/credential-api/src/main/java/org/apache/custos/credential/api/controllers/SSHCredentialsController.java
+++ b/credential-store/credential-api/src/main/java/org/apache/custos/credential/api/controllers/SSHCredentialsController.java
@@ -15,6 +15,7 @@ public class SSHCredentialsController {
     @Autowired
     private VaultManager vaultManager;
 
+
     @RequestMapping("/ssh/{gateway}/{token}")
     public SSHCredential getSSHCredential(@PathVariable("gateway") String gateway, @PathVariable("token") String token) throws Exception {
         SSHCredentialEntity credentialEntity = vaultManager.getCredentialEntity(SSHCredentialEntity.class, token, gateway);
diff --git a/credntial-store/credential-api/src/main/java/org/apache/custos/credential/api/resources/SSHCredential.java b/credential-store/credential-api/src/main/java/org/apache/custos/credential/api/resources/SSHCredential.java
similarity index 100%
rename from credntial-store/credential-api/src/main/java/org/apache/custos/credential/api/resources/SSHCredential.java
rename to credential-store/credential-api/src/main/java/org/apache/custos/credential/api/resources/SSHCredential.java
diff --git a/credntial-store/credential-core/pom.xml b/credential-store/credential-core/pom.xml
similarity index 94%
rename from credntial-store/credential-core/pom.xml
rename to credential-store/credential-core/pom.xml
index b70ef4b..090c1bf 100644
--- a/credntial-store/credential-core/pom.xml
+++ b/credential-store/credential-core/pom.xml
@@ -3,7 +3,7 @@
          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>credntial-store</artifactId>
+        <artifactId>credential-store</artifactId>
         <groupId>org.apache.airavata.custos</groupId>
         <version>0.01-SNAPSHOT</version>
     </parent>
@@ -30,4 +30,4 @@
         </dependency>
     </dependencies>
 
-</project>
\ No newline at end of file
+</project>
diff --git a/credntial-store/credential-core/src/main/java/org/apache/airavata/custos/credentials/BaseCredentialEntity.java b/credential-store/credential-core/src/main/java/org/apache/airavata/custos/credentials/BaseCredentialEntity.java
similarity index 100%
rename from credntial-store/credential-core/src/main/java/org/apache/airavata/custos/credentials/BaseCredentialEntity.java
rename to credential-store/credential-core/src/main/java/org/apache/airavata/custos/credentials/BaseCredentialEntity.java
diff --git a/credntial-store/credential-core/src/main/java/org/apache/airavata/custos/credentials/ssh/SSHCredentialEntity.java b/credential-store/credential-core/src/main/java/org/apache/airavata/custos/credentials/ssh/SSHCredentialEntity.java
similarity index 100%
rename from credntial-store/credential-core/src/main/java/org/apache/airavata/custos/credentials/ssh/SSHCredentialEntity.java
rename to credential-store/credential-core/src/main/java/org/apache/airavata/custos/credentials/ssh/SSHCredentialEntity.java
diff --git a/credntial-store/credential-core/src/main/java/org/apache/airavata/custos/vault/VaultManager.java b/credential-store/credential-core/src/main/java/org/apache/airavata/custos/vault/VaultManager.java
similarity index 100%
rename from credntial-store/credential-core/src/main/java/org/apache/airavata/custos/vault/VaultManager.java
rename to credential-store/credential-core/src/main/java/org/apache/airavata/custos/vault/VaultManager.java
diff --git a/credntial-store/credential-core/src/main/java/org/apache/airavata/custos/vault/annotations/VaultPath.java b/credential-store/credential-core/src/main/java/org/apache/airavata/custos/vault/annotations/VaultPath.java
similarity index 100%
rename from credntial-store/credential-core/src/main/java/org/apache/airavata/custos/vault/annotations/VaultPath.java
rename to credential-store/credential-core/src/main/java/org/apache/airavata/custos/vault/annotations/VaultPath.java
diff --git a/credntial-store/pom.xml b/credential-store/pom.xml
similarity index 93%
rename from credntial-store/pom.xml
rename to credential-store/pom.xml
index 52eb721..c64d1d2 100644
--- a/credntial-store/pom.xml
+++ b/credential-store/pom.xml
@@ -5,7 +5,7 @@
     <modelVersion>4.0.0</modelVersion>
 
     <groupId>org.apache.airavata.custos</groupId>
-    <artifactId>credntial-store</artifactId>
+    <artifactId>credential-store</artifactId>
     <packaging>pom</packaging>
     <version>0.01-SNAPSHOT</version>
     <name>Custos Credential Store</name>
@@ -22,4 +22,4 @@
             <version>2.1.6.RELEASE</version>
         </dependency>
     </dependencies>
-</project>
\ No newline at end of file
+</project>
diff --git a/pom.xml b/pom.xml
index a141d16..5f650ea 100644
--- a/pom.xml
+++ b/pom.xml
@@ -87,7 +87,7 @@
                 <activeByDefault>true</activeByDefault>
             </activation>
             <modules>
-                <module>credntial-store</module>
+                <module>credential-store</module>
             </modules>
         </profile>
     </profiles>