Skip to content

Commit

Permalink
Merge pull request #10 from gayanch/master
Browse files Browse the repository at this point in the history
added maker-checker dashboard component
  • Loading branch information
gayanch authored Oct 29, 2018
2 parents f310fca + 7256366 commit d8e43b8
Show file tree
Hide file tree
Showing 2,305 changed files with 252,240 additions and 0 deletions.
25 changes: 25 additions & 0 deletions maker-checker-dashboard/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
*.class

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.ear
*.mar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

# Ignore everything in this directory
target
.classpath
.settings
.project
*.iml
*.iws
*.ipr
.idea

**/target
1 change: 1 addition & 0 deletions maker-checker-dashboard/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Maker Checker Dashboard for WSO2Telco Mobile Identity Gateway
84 changes: 84 additions & 0 deletions maker-checker-dashboard/components/auth-admin-service/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
<?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>
<groupId>com.wso2telco.ids.admin.services.auth</groupId>
<artifactId>auth-admin-service</artifactId>
<version>1.0.0</version>
<name>auth-admin-service</name>

<parent>
<groupId>com.wso2telco.ids.dashboard</groupId>
<artifactId>maker-checker-dashboard-parent</artifactId>
<relativePath>../../pom.xml</relativePath>
<version>1.0.0</version>
</parent>


<dependencies>
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-wsdl2code-maven-plugin</artifactId>
<version>1.7.8</version>
</dependency>

<dependency>
<groupId>org.apache.ws.commons.axiom</groupId>
<artifactId>axiom-api</artifactId>
<version>1.2.20</version>
</dependency>
<dependency>
<groupId>org.apache.ws.commons.axiom</groupId>
<artifactId>axiom-impl</artifactId>
<version>1.2.20</version>
</dependency>
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-adb</artifactId>
<version>1.7.7</version>
</dependency>
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-transport-local</artifactId>
<version>1.7.7</version>
</dependency>
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-xmlbeans</artifactId>
<version>1.7.7</version>
</dependency>
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-kernel</artifactId>
<version>1.7.7</version>
</dependency>
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-transport-http</artifactId>
<version>1.7.7</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>org.apache.neethi</groupId>
<artifactId>neethi</artifactId>
<version>3.0.3</version>
</dependency>
<dependency>
<groupId>org.apache.woden</groupId>
<artifactId>woden-core</artifactId>
<version>1.0M10</version>
</dependency>
<dependency>
<groupId>org.apache.ws.xmlschema</groupId>
<artifactId>xmlschema-core</artifactId>
<version>2.2.1</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>

Loading

0 comments on commit d8e43b8

Please sign in to comment.