-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from gayanch/master
added maker-checker dashboard component
- Loading branch information
Showing
2,305 changed files
with
252,240 additions
and
0 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
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 |
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 @@ | ||
Maker Checker Dashboard for WSO2Telco Mobile Identity Gateway |
84 changes: 84 additions & 0 deletions
84
maker-checker-dashboard/components/auth-admin-service/pom.xml
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,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> | ||
|
Oops, something went wrong.