Skip to content

Commit

Permalink
Merge pull request #2 from Biruntha/master
Browse files Browse the repository at this point in the history
Pom file changes
  • Loading branch information
keerthu authored Jan 11, 2018
2 parents 5803646 + 0978963 commit 4f7b455
Showing 1 changed file with 80 additions and 1 deletion.
81 changes: 80 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.wso2.okta.client</groupId>
<artifactId>OKTA-OAuth-Client</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>bundle</packaging>
<name>Client implementation to integrate with Okta Authorization Server</name>
<url>http://wso2.org</url>

<dependencies>
<dependency>
Expand Down Expand Up @@ -69,7 +70,47 @@
<checksumPolicy>ignore</checksumPolicy>
</releases>
</repository>
<repository>
<id>wso2.releases</id>
<name>WSO2 internal Repository</name>
<url>http://maven.wso2.org/nexus/content/repositories/releases/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
<checksumPolicy>ignore</checksumPolicy>
</releases>
</repository>
<repository>
<id>wso2.snapshots</id>
<name>Apache Snapshot Repository</name>
<url>http://maven.wso2.org/nexus/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>nexus-releases</id>
<name>WSO2 Release Distribution Repository</name>
<url>http://maven.wso2.org/nexus/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>wso2.snapshots</id>
<name>Apache Snapshot Repository</name>
<url>http://maven.wso2.org/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<scm>
<connection>scm:git:https://github.com/wso2-extensions/apim-keymanager-okta.git</connection>
<url>https://github.com/wso2-extensions/apim-keymanager-okta.git</url>
<developerConnection>scm:git:https://github.com/wso2-extensions/apim-keymanager-okta</developerConnection>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
Expand All @@ -96,6 +137,44 @@
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>generate-test-resources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.apache.commons</groupId>
<artifactId>commons-email</artifactId>
<version>1.2</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>target/connector/dependencies</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<execution>
<id>copy-emma-dependencies</id>
<phase>compile</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/emma</outputDirectory>
<includeTypes>jar</includeTypes>
<includeArtifactIds>emma,org.wso2.carbon.automation.core
</includeArtifactIds>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
Expand Down

0 comments on commit 4f7b455

Please sign in to comment.