Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SOFT Core
SOFT 160
openmrs-rest-connector
Commits
43561245
Commit
43561245
authored
Nov 04, 2020
by
Christopher Bohn
🤔
Browse files
Updated pom.xml and .gitignore for 2020
parent
7cc94546
Changes
9
Hide whitespace changes
Inline
Side-by-side
.gitignore
0 → 100644
View file @
43561245
# Mac file finder metadata
.DS_Store
# Windows file metadata
._*
# Thumbnail image caches
Thumbs.db
ethumbs.db
# MS Office temporary file
~*
# Emacs backup file
*~
# Common
[Bb]in/
[Bb]uild/
[Oo]bj/
[Oo]ut/
[Tt]mp/
[Xx]86/
[Ii][Aa]32/
[Xx]64/
[Xx]86_64/
[Xx]86-64/
[Aa]rm
[Aa]32
[Tt]32
[Aa]64
*.tmp
*.bak
*.bk
*.swp
# Java files
*.class
javadoc/
# Maven
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
# JetBrains (IntelliJ IDEA, PyCharm, etc) files
.idea/
cmake-build-*/
*.iml
*.iws
*.ipr
# Eclipse files
.settings/
.project
.classpath
.buildpath
.loadpath
.factorypath
local.properties
rest_connector/
pom.xml
→
pom.xml
View file @
43561245
...
...
@@ -7,25 +7,30 @@
<version>
1.0-SNAPSHOT
</version>
<name>
rest_connector
</name>
<url>
http://maven.apache.org
</url>
<dependencies>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
3.8.1
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.6.0
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.8.1
</version>
<configuration>
<source>
8
</source>
<target>
8
</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
4.13
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
</project>
rest_connector/.gitignore
deleted
100644 → 0
View file @
7cc94546
/target/
rest_connector/
src/main/java/edu/unl/cse/soft160/rest_connector/connection/RestConnection.java
→
src/main/java/edu/unl/cse/soft160/rest_connector/connection/RestConnection.java
View file @
43561245
File moved
rest_connector/
src/main/java/edu/unl/cse/soft160/rest_connector/connector/ObservationRecord.java
→
src/main/java/edu/unl/cse/soft160/rest_connector/connector/ObservationRecord.java
View file @
43561245
File moved
rest_connector/
src/main/java/edu/unl/cse/soft160/rest_connector/connector/OpenMRSConnection.java
→
src/main/java/edu/unl/cse/soft160/rest_connector/connector/OpenMRSConnection.java
View file @
43561245
File moved
rest_connector/
src/main/java/edu/unl/cse/soft160/rest_connector/connector/OpenMRSXPath.java
→
src/main/java/edu/unl/cse/soft160/rest_connector/connector/OpenMRSXPath.java
View file @
43561245
File moved
rest_connector/
src/main/java/edu/unl/cse/soft160/rest_connector/connector/PatientRecord.java
→
src/main/java/edu/unl/cse/soft160/rest_connector/connector/PatientRecord.java
View file @
43561245
File moved
rest_connector/
src/test/java/edu/unl/cse/soft160/rest_connector/AllPatientDataSystemTest.java
→
src/test/java/edu/unl/cse/soft160/rest_connector/AllPatientDataSystemTest.java
View file @
43561245
File moved
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment