Skip to content

Commit a77e050

Browse files
authored
Merge branch 'master' into REPORT-912
2 parents 58cbd32 + e4d4ddd commit a77e050

File tree

6 files changed

+27
-36
lines changed

6 files changed

+27
-36
lines changed

.gitignore

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,13 @@ api/.classpath
1414
api/.project
1515
api/.settings/*
1616
api/target/*
17-
api-1.9/.classpath
18-
api-1.9/.project
19-
api-1.9/.settings/*
20-
api-2.0/.classpath
21-
api-2.0/.project
22-
api-2.0/.settings/*
2317
api-tests/.classpath
2418
api-tests/.project
2519
api-tests/.settings/*
2620
omod/.classpath
2721
omod/.project
2822
omod/.settings/*
2923
omod/target/*
30-
test-1.9/target/*
3124
/.settings
3225

3326
.DS_Store

api-tests/src/test/resources/log4j.xml

Lines changed: 0 additions & 24 deletions
This file was deleted.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<Configuration xmlns="http://logging.apache.org/log4j/2.0/config">
3+
<Properties>
4+
<!-- The default pattern is stored as a property so that it's only defined once.
5+
It's also quite challenging to escape using Log4j2's variable substitution. -->
6+
<Property name="defaultPattern">%p - %C{1}.%M(%L) |%d{ISO8601}| %m%n</Property>
7+
</Properties>
8+
<Appenders>
9+
<!-- the console appender is not required but usually a good idea -->
10+
<Console name="CONSOLE" target="SYSTEM_OUT">
11+
<PatternLayout pattern="${openmrs:logLayout:-${defaultPattern}}" />
12+
</Console>
13+
</Appenders>
14+
<Loggers>
15+
<Logger name="org.springframework" additivity="false" level="WARN" />
16+
<Logger name="org.hibernate" additivity="false" level="ERROR" />
17+
<Logger name="org.openmrs.module.reporting" level="INFO"/>
18+
<Root level="WARN">
19+
<AppenderRef ref="CONSOLE" />
20+
</Root>
21+
</Loggers>
22+
</Configuration>

api/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@
1010
<name>Reporting API</name>
1111
<description>API project for Reporting</description>
1212

13+
1314
</project>

omod/src/main/resources/config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</description>
1616
<activator>@[email protected]</activator>
1717
<updateURL>https://dev.openmrs.org/modules/download/@MODULE_ID@/update.rdf</updateURL>
18-
<require_version>1.11.3 - 1.11.*, 1.10.2 - 1.10.*, 1.9.9 - 1.9.*, 1.12</require_version>
18+
<require_version>${openMRSVersion}</require_version>
1919

2020
<require_modules>
2121
<require_module version="${serializationVersion}">org.openmrs.module.serialization.xstream</require_module>

pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
<calculationVersion>1.2</calculationVersion>
4646
<quartzVersion>2.1.1</quartzVersion>
4747
<poiVersion>3.12</poiVersion>
48-
<jodatimeVersion>2.12.5</jodatimeVersion>
49-
<handlebarsVersion>1.1.2</handlebarsVersion>
50-
<openmrsTestutilsVersion>1.7.0</openmrsTestutilsVersion>
48+
<jodatimeVersion>2.12.5</jodatimeVersion>
49+
<handlebarsVersion>1.1.2</handlebarsVersion>
50+
<openmrsTestutilsVersion>1.7.0</openmrsTestutilsVersion>
5151
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5252
<MODULE_ID>${project.parent.artifactId}</MODULE_ID>
5353
<MODULE_NAME>Reporting</MODULE_NAME>
@@ -271,7 +271,6 @@
271271
</dependency>
272272
</dependencies>
273273

274-
275274
<build>
276275
<resources>
277276
<resource>

0 commit comments

Comments
 (0)