Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bail8001 committed Jan 5, 2021
0 parents commit 31b4ad1
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**/.project
/**/.classpath
/**/.settings/
/**/target/
/results.csv
/**/.factorypath
38 changes: 38 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?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>

<parent>
<groupId>com.myorganization.mybusiness</groupId>
<artifactId>myparent.spring-boot-2</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>

<artifactId>myproject</artifactId>

<packaging>pom</packaging>

<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>

<scm>
<connection>scm:git:http://myorganization.com/bitbucket/scm/myorganization/myproject.git</connection>
<developerConnection>scm:git:http://myorganization.com/bitbucket/scm/myorganization/myproject.git</developerConnection>
<tag>HEAD</tag>
</scm>

<modules>
<module>modules/application</module>
</modules>

<dependencies>
<dependency>
<groupId>com.myorganization.mybusiness</groupId>
<artifactId>mytools.springframework</artifactId>
</dependency>
</dependencies>

</project>

0 comments on commit 31b4ad1

Please sign in to comment.