Skip to content

Commit

Permalink
Merge pull request #21 from ashanhr/main
Browse files Browse the repository at this point in the history
Add pom.xml File to Root Directory
  • Loading branch information
chanikag authored Dec 18, 2024
2 parents 74b759e + 9718021 commit 8f980a3
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 7 deletions.
14 changes: 7 additions & 7 deletions counter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@
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.wso2.integration.transaction.counter</groupId>
<version>1.2.0</version>
<artifactId>transaction-counter</artifactId>
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>org.wso2.integration.transaction.counter</groupId>
<version>1.2.0</version>
<artifactId>transaction-count-handler</artifactId>
Expand Down Expand Up @@ -52,13 +59,6 @@
</dependency>
</dependencies>

<scm>
<connection>scm:git:https://github.com/wso2/integration-transaction-counter.git</connection>
<developerConnection>scm:git:https://github.com/wso2/integration-transaction-counter.git</developerConnection>
<url>https://github.com/wso2/integration-transaction-counter.git/</url>
<tag>HEAD</tag>
</scm>

<profiles>
<profile>
<id>deploy</id>
Expand Down
43 changes: 43 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
# Copyright (c) 2024, WSO2 LLC. (http://www.wso2.org) All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
-->
<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>org.wso2.integration.transaction.counter</groupId>
<version>1.2.0</version>
<artifactId>transaction-counter</artifactId>
<packaging>pom</packaging>
<name>WSO2 Integration Transaction Counter</name>

<parent>
<groupId>org.wso2</groupId>
<artifactId>wso2</artifactId>
<version>1</version>
</parent>

<scm>
<connection>scm:git:https://github.com/wso2/integration-transaction-counter.git</connection>
<developerConnection>scm:git:https://github.com/wso2/integration-transaction-counter.git</developerConnection>
<url>https://github.com/wso2/integration-transaction-counter.git/</url>
<tag>HEAD</tag>
</scm>

<modules>
<module>counter</module>
</modules>
</project>

0 comments on commit 8f980a3

Please sign in to comment.