Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1367 change log4j-1.2.17 to log4j-2.17.1 #1370

Merged
merged 29 commits into from
Feb 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
cd5f51c
[#2179]:Fix that the exclusion check not effects the path which in th…
moshoujingli Jun 4, 2018
88b8df1
bugfix[#2180]:sometime cant load the log config file properly
moshoujingli Jun 21, 2018
a6fa6de
[#1354] Revert experimental GroovyTempate.compile code to fix templat…
Maximillian13 Dec 27, 2021
b55ee1c
[#1354] Add comment explaining revert
Maximillian13 Dec 28, 2021
7a651ac
[#1354] Add missing import statments
Maximillian13 Jan 4, 2022
ef8116e
#1367 change log4j-1.2.17 to log4j-2.17.1
jacol84 Jan 12, 2022
d36f9be
Merge pull request #1368 from Maximillian13/github-issue-1354-patch
xael-fry Jan 28, 2022
a79d20b
Updated dependencies and allow support for JDK 17 source (#1372)
tazmaniax Jan 28, 2022
20659ad
Cleanup code (#1357)
aleksandy Jan 28, 2022
d4b5130
Updated dependencies
tazmaniax Jan 30, 2022
3287fd7
[#1374] build on java 11
xael-fry Jan 31, 2022
8b2871b
Updated dependencies (#1373)
tazmaniax Jan 31, 2022
ec96e5a
Merge pull request #1375 from xael-fry/1374_travis_fix
xael-fry Jan 31, 2022
6dabc53
#1371 add github-actions
xael-fry Jan 31, 2022
316739b
Merge pull request #1376 from xael-fry/1371_github-actions
xael-fry Jan 31, 2022
55a8700
[#1371] run on push envent
xael-fry Jan 31, 2022
4b1d672
[#1371] remove travis
xael-fry Jan 31, 2022
30b3a1d
Merge pull request #1377 from xael-fry/1371_github-actions
xael-fry Jan 31, 2022
60a7eb2
#1371 remove travis badge
xael-fry Jan 31, 2022
a0919c6
Merge pull request #1378 from xael-fry/1371_github-actions
xael-fry Jan 31, 2022
cb6eda1
Revert "bugfix[#2180]:sometime cant load the log config file properly"
xael-fry Jan 31, 2022
ed2368b
Merge pull request #1379 from xael-fry/pr/1238
xael-fry Jan 31, 2022
a64ab7c
change
jacol84 Feb 1, 2022
ba702d0
#1367 change log4j-1.2.17 to log4j-2.17.1
jacol84 Jan 12, 2022
3bd0ab3
change
jacol84 Feb 1, 2022
cb56dbd
#1367 remove lib after rebase
jacol84 Feb 2, 2022
a49b5b7
Merge remote-tracking branch 'origin/fixLog4j2' into fixLog4j2
jacol84 Feb 2, 2022
6ae713c
#1367 fixed "github workflow" correctly with documentation cd ...
jacol84 Feb 2, 2022
e599bac
#1367
jacol84 Feb 2, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Pull Requests

on:
push:
pull_request:

concurrency:
# Only run once for latest commit per ref and cancel other (previous) runs.
group: ci-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
jdk: [ 11, 17 ]
name: Check / Tests (JDK ${{ matrix.jdk }})
steps:
- name: Checkout
uses: actions/checkout@v2
with:
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
fetch-depth: 0

- name: Set up python 2
uses: actions/setup-python@v2
with:
python-version: '2.x'
architecture: 'x64'

- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.jdk }}
distribution: 'adopt'

- name: Build with Ant
working-directory: ./framework
run: ant test
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.textile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
h1. Welcome to Play framework
h1. Welcome to Play framework

!https://travis-ci.org/playframework/play1.svg?branch=1.4.x!:https://travis-ci.org/playframework/play1 !https://badges.gitter.im/playframework/play1.svg(Join the chat at https://gitter.im/playframework/play1)!:https://gitter.im/playframework/play1?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
!https://github.com/playframework/play1/actions/workflows/build-test.yml/badge.svg!:https://github.com/playframework/play1/actions/workflows/build-test.yml/badge.svg !https://badges.gitter.im/playframework/play1.svg(Join the chat at https://gitter.im/playframework/play1)!:https://gitter.im/playframework/play1?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge

Play framework makes it easier to build Web applications with Java. It is a clean alternative to bloated Enterprise Java stacks. It focuses on developer productivity and targets RESTful architectures. Play is a perfect companion to agile software development.

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/configuration.textile
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ Java source level, which overrides the @java.version@ system property. For examp

bc. java.source=1.8

Values: @1.7@ (No longer supported since 1.5.0), @1.8@, @9@, @10@.
Values: @1.7@ (No longer supported since 1.5.0), @1.8@, @9@, @10@, @11@, @12@, @13@, @14@, @15@, @17@.

Default: @1.8@

Expand Down
23 changes: 14 additions & 9 deletions documentation/manual/logs.textile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
h1. Logging configuration

The Play logger is built on "Log4j":http://logging.apache.org/log4j/1.2/index.html. Since most Java libraries use Log4j or a wrapper able to use Log4j as a backend, you can easily configure logging that is well-suited to your application.
The Play logger is built on "Log4j":https://logging.apache.org/log4j/2.x. Since most Java libraries use Log4j or a wrapper able to use Log4j as a backend, you can easily configure logging that is well-suited to your application.


h2. <a name="logging">Logging from your application</a>
Expand Down Expand Up @@ -30,14 +30,19 @@ If you need to fully configure Log4j, create a @log4j.properties@ file in the @c

The default Log4j configuration is the following:

bc. log4j.rootLogger=ERROR, Console

log4j.logger.play=INFO

# Console
log4j.appender.Console=org.apache.log4j.ConsoleAppender
log4j.appender.Console.layout=org.apache.log4j.PatternLayout
log4j.appender.Console.layout.ConversionPattern=%d{ABSOLUTE} %-5p ~ %m%n
bc. # appender Console
appender.console.type = Console
appender.console.name = STDOUT
appender.console.layout.type = PatternLayout
appender.console.layout.pattern = %d [%t] %p %c - %m%n
appender.console.filter.threshold.type = ThresholdFilter
appender.console.filter.threshold.level = INFO
# play logger
logger.app.name = play
logger.app.level = INFO
# root logger
rootLogger.level = INFO
rootLogger.appenderRef.console.ref = STDOUT

Copy this file and update it for your specifics needs!

Expand Down
31 changes: 20 additions & 11 deletions documentation/manual/production.textile
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,26 @@ For production it’s a good idea to use rolling log files. Do not send logging

Create a custom @log4j.properties@ in the @conf/@ directory:

bc. log4j.rootLogger=ERROR, Rolling

log4j.logger.play=INFO

# Rolling files
log4j.appender.Rolling=org.apache.log4j.RollingFileAppender
log4j.appender.Rolling.File=application.log
log4j.appender.Rolling.MaxFileSize=1MB
log4j.appender.Rolling.MaxBackupIndex=100
log4j.appender.Rolling.layout=org.apache.log4j.PatternLayout
log4j.appender.Rolling.layout.ConversionPattern=%d{ABSOLUTE} %-5p ~ %m%n
bc. # appender Console
appender.fileLogger.type = RollingFile
appender.fileLogger.name = fileLogger
appender.fileLogger.fileName= logs/application.log
appender.fileLogger.filePattern= logs/application%i.log
appender.fileLogger.layout.type = PatternLayout
appender.fileLogger.layout.pattern = %d [%t] %p %c - %m%n
appender.fileLogger.policies.type = Policies
appender.fileLogger.policies.size.type = SizeBasedTriggeringPolicy
appender.fileLogger.policies.size.size = 1MB
appender.fileLogger.strategy.type = DefaultRolloverStrategy
appender.fileLogger.strategy.max = 100
appender.fileLogger.filter.threshold.type = ThresholdFilter
appender.fileLogger.filter.threshold.level = ERROR
# play logger
logger.app.name = play
logger.app.level = ERROR
# root logger
rootLogger.level = ERROR
rootLogger.appenderRef.fileLogger.ref = fileLogger

h2. <a name="server">Front-end HTTP server</a>

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual_ja/logs.textile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
h1. ログの設定

Play のロガーは組み込みの "Log4j":http://logging.apache.org/log4j/1.2/index.html です。ほとんどの Java ライブラリが Log4j か、または Log4j をバックエンドとして使えるラッパを使用するので、アプリケーションに適合するよう、容易にロギングを設定することができます。
Play のロガーは組み込みの "Log4j":https://logging.apache.org/log4j/2.x/ です。ほとんどの Java ライブラリが Log4j か、または Log4j をバックエンドとして使えるラッパを使用するので、アプリケーションに適合するよう、容易にロギングを設定することができます。

h2. <a name="logging">アプリケーションからのロギング</a>

Expand Down
20 changes: 10 additions & 10 deletions framework/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</path>

<target name="clean" description="clean resources">
<delete dir="classes" />
<delete dir="classes" />
<delete dir="dist" />
<delete dir="tests-results" />
<delete dir="tests-tmp" />
Expand All @@ -46,7 +46,7 @@
<include name="**/data/**"/>
<include name="**/logs/**"/>
<include name="**/i-am-working-here/**"/>
</fileset>
</fileset>
</delete>
<antcall target="clean-unittest"/>
</target>
Expand Down Expand Up @@ -97,7 +97,7 @@
<tag name="play.todo" scope="all" description="To do:"/>
<tag name="todo" scope="all" description="To do:"/>
<group title="Libs" packages="play.libs.*"/>
<link offline="false" href="https://docs.oracle.com/javase/" />
<link offline="false" href="https://docs.oracle.com/javase/" />
<link offline="false" href="http://commons.apache.org/proper/commons-fileupload/apidocs/" />
<link offline="false" href="https://www.javadoc.io/doc/com.google.code.gson/gson" />
<link offline="false" href="https://docs.jboss.org/hibernate/orm/4.2/javadocs/" />
Expand Down Expand Up @@ -162,7 +162,7 @@
<jvmarg value="-Xrunjdwp:transport=dt_socket,address=${jpda.port},server=y,suspend=n"/>
<jvmarg value="${profiler.info.jvmargs.agent}"/>
<jvmarg value="${jvm.memory}"/>
</java>
</java>
</target>

<target name="nb-run-application">
Expand All @@ -189,7 +189,7 @@
<jvmarg value="-Xdebug"/>
<jvmarg value="-Xrunjdwp:transport=dt_socket,address=${jpda.port},server=y,suspend=n"/>
<jvmarg value="${jvm.memory}"/>
</java>
</java>
</target>

<target name="nb-debug">
Expand Down Expand Up @@ -223,7 +223,7 @@
<jvmarg value="-javaagent:${basedir}/play-${version}.jar" />
<jvmarg value="-Xdebug"/>
<jvmarg value="-Xrunjdwp:transport=dt_socket,address=${jpda.port},server=y,suspend=n"/>
</java>
</java>
</target>

<target name="test-in-nb" depends="test">
Expand All @@ -237,7 +237,7 @@
<include name="**/*.java"/>
</javac>
</target>

<target name="build-test-modules">
<ant antfile="build.xml" target="build" dir="../samples-and-tests/modules/testModule" >
<property name="play.path" value="../../../"/>
Expand All @@ -263,7 +263,7 @@
<echo message="Testing unittests" />

<antcall target="unittest" />

<echo message="Testing development lifecycle (wait ...)" />

<exec executable="${pythonExecutable}" failonerror="true">
Expand Down Expand Up @@ -388,7 +388,7 @@

<target name="compile-unittest" depends="compile">
<mkdir dir="test-classes"/>
<javac encoding="utf-8" srcdir="test-src" destdir="test-classes" debug="true" source="1.8" target="1.8">
<javac encoding="utf-8" srcdir="test-src" destdir="test-classes" debug="true" source="11" target="11">
<classpath refid="classpath.test" />
</javac>
<copy todir="test-classes">
Expand Down Expand Up @@ -421,7 +421,7 @@
</target>

<target name="package" depends="clean,version,jar,javadoc">
<mkdir dir="dist" />
<mkdir dir="dist" />
<zip destfile="dist/play-${version}.zip" comment="Play! ${version}" update="false">
<zipfileset prefix="play-${version}" dir=".." includes="**/*" excludes="**/cobertura.ser,**/*.pyc,hs_err*,.*,.*/*,framework/dist/**,id,play,nbproject/**,**/.bzr/**,**/.git/**,*.bzrignore,support/textmate/**,framework/classes/**,framework/tests-results/**,samples-and-tests/**/test-result,samples-and-tests/**/i-am-working-here,samples-and-tests/**/data,samples-and-tests/**/logs,samples-and-tests/**/tmp,samples-and-tests/**/db,samples-and-tests/**/attachments,modules/**" />
<zipfileset prefix="play-${version}" dir=".." includes="play" filemode="777" />
Expand Down
76 changes: 38 additions & 38 deletions framework/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ transitiveDependencies: false
# This core dependencies are required by Play framework
require: &allDependencies
- antlr 2.7.7
- com.mchange -> c3p0 0.9.5.2
- com.zaxxer -> HikariCP 3.4.5
- org.ow2.asm -> asm 9.0
- org.ow2.asm -> asm-commons 9.0
- org.ow2.asm -> asm-util 9.0
- org.ow2.asm -> asm-tree 9.0
- org.ow2.asm -> asm-analysis 9.0
- com.mchange -> c3p0 0.9.5.5
- com.zaxxer -> HikariCP 5.0.1
- org.ow2.asm -> asm 9.2
- org.ow2.asm -> asm-commons 9.2
- org.ow2.asm -> asm-util 9.2
- org.ow2.asm -> asm-tree 9.2
- org.ow2.asm -> asm-analysis 9.2
- cglib -> cglib 3.3.0
- com.google.code.gson -> gson 2.8.6
- com.jamonapi -> jamon 2.81
- com.google.code.gson -> gson 2.8.9
- com.jamonapi -> jamon 2.82
- com.ning -> async-http-client 1.9.40
- commons-beanutils 1.9.2
- commons-codec 1.10
- commons-beanutils 1.9.4
- commons-codec 1.15
- org.apache.commons -> commons-email 1.5
- commons-fileupload 1.3.2
- commons-io 2.5
- commons-fileupload 1.4
- commons-io 2.11.0
- com.google.code.maven-play-plugin.org.apache.commons -> commons-javaflow 1590792
- commons-lang 2.6
- commons-logging 1.2
Expand All @@ -34,47 +34,47 @@ require: &allDependencies
- javax.inject 1.0
- javax.validation -> validation-api 1.1.0.Final
- jaxen 1.2.0
- joda-time 2.10
- joda-time 2.10.13
- org.hamcrest -> hamcrest-all 1.3
- junit 4.12
- junit 4.13.2
- jregex 1.2_01
- log4j 1.2.17
- net.sf.ehcache -> ehcache 2.10.6
- log4j-api 2.17.1
- log4j-core 2.17.1
- net.sf.ehcache -> ehcache 2.10.9.2
- net.sf.ezmorph -> ezmorph 1.0.6
- net.sf.jsr107cache -> jsr107cache 1.1
- net.sf.oval -> oval 1.86
- mysql -> mysql-connector-java 8.0.22
- net.sf.oval -> oval 1.90
- mysql -> mysql-connector-java 8.0.28
- oauth.signpost -> signpost-core 1.2.1.2
- org.apache.geronimo.specs -> geronimo-servlet_2.5_spec 1.2
- org.apache.ivy -> ivy 2.4.0
- org.bouncycastle -> bcprov-jdk15on 1.61
- org.bouncycastle -> bcpkix-jdk15on 1.61
- org.codehaus.groovy -> groovy 3.0.6
- org.codehaus.groovy -> groovy-xml 3.0.6
- org.eclipse.jdt -> org.eclipse.jdt.core 3.23.0
- org.apache.ivy -> ivy 2.5.0
- org.bouncycastle -> bcprov-jdk15on 1.70
- org.bouncycastle -> bcpkix-jdk15on 1.70
- org.codehaus.groovy -> groovy 3.0.9
- org.codehaus.groovy -> groovy-xml 3.0.9
- org.eclipse.jdt -> org.eclipse.jdt.core 3.28.0
- org.hibernate -> hibernate-core 5.4.30.Final.patched
- net.bytebuddy -> byte-buddy 1.10.21
- net.bytebuddy -> byte-buddy 1.12.7
- javax.persistence -> javax.persistence-api 2.2
- org.hibernate.common -> hibernate-commons-annotations 5.1.2.Final
- org.hibernate -> hibernate-validator 5.4.1.Final
- org.jboss -> jandex 2.2.3.Final
- org.jboss.logging -> jboss-logging 3.4.1.Final
- org.jboss -> jandex 2.4.2.Final
- org.jboss.logging -> jboss-logging 3.4.3.Final
- org.jboss.spec.javax.transaction -> jboss-transaction-api_1.2_spec 1.1.1.Final
- javax.persistence -> javax.persistence-api 2.2
- javax.xml.bind -> jaxb-api 2.3.1
- org.glassfish.jaxb -> jaxb-runtime 2.3.1
- org.glassfish.jaxb -> jaxb-runtime 2.3.6
- com.fasterxml -> classmate 1.5.1
- org.hibernate -> hibernate-c3p0 5.4.30.Final
- org.hibernate -> hibernate-ehcache 5.4.30.Final
- com.mchange -> mchange-commons-java 0.2.12
- org.javassist -> javassist 3.27.0-GA
- com.mchange -> mchange-commons-java 0.2.20
- org.javassist -> javassist 3.28.0-GA
- io.netty -> netty 3.10.6.Final
- org.postgresql -> postgresql 42.2.18
- org.slf4j -> slf4j-api 1.7.22
- org.slf4j -> slf4j-log4j12 1.7.22
- org.yaml -> snakeyaml 1.17
- net.spy -> spymemcached 2.12.1
- com.thoughtworks.xstream -> xstream 1.4.9
- org.postgresql -> postgresql 42.3.1
- org.slf4j -> slf4j-api 1.7.35
- org.apache.logging.log4j -> log4j-slf4j-impl 2.17.1
- org.yaml -> snakeyaml 1.30
- net.spy -> spymemcached 2.12.3
- com.thoughtworks.xstream -> xstream 1.4.19
- xmlpull 1.1.3.4d_b4_min

# Default repositories, used for all projects
Expand Down
Binary file removed framework/lib/HikariCP-3.4.5.jar
Binary file not shown.
Binary file added framework/lib/HikariCP-5.0.1.jar
Binary file not shown.
Binary file removed framework/lib/asm-9.0.jar
Binary file not shown.
Binary file added framework/lib/asm-9.2.jar
Binary file not shown.
Binary file removed framework/lib/asm-analysis-9.0.jar
Binary file not shown.
Binary file added framework/lib/asm-analysis-9.2.jar
Binary file not shown.
Binary file removed framework/lib/asm-commons-9.0.jar
Binary file not shown.
Binary file added framework/lib/asm-commons-9.2.jar
Binary file not shown.
Binary file not shown.
Binary file removed framework/lib/asm-util-9.0.jar
Binary file not shown.
Binary file added framework/lib/asm-util-9.2.jar
Binary file not shown.
Binary file removed framework/lib/bcpkix-jdk15on-1.61.jar
Binary file not shown.
Binary file added framework/lib/bcpkix-jdk15on-1.70.jar
Binary file not shown.
Binary file removed framework/lib/bcprov-jdk15on-1.61.jar
Binary file not shown.
Binary file added framework/lib/bcprov-jdk15on-1.70.jar
Binary file not shown.
Binary file removed framework/lib/byte-buddy-1.10.21.jar
Binary file not shown.
Binary file added framework/lib/byte-buddy-1.12.7.jar
Binary file not shown.
Binary file removed framework/lib/c3p0-0.9.5.2.jar
Binary file not shown.
Binary file added framework/lib/c3p0-0.9.5.5.jar
Binary file not shown.
Binary file removed framework/lib/classmate-1.3.4.jar
Binary file not shown.
Binary file removed framework/lib/commons-beanutils-1.9.2.jar
Binary file not shown.
Binary file added framework/lib/commons-beanutils-1.9.4.jar
Binary file not shown.
Binary file removed framework/lib/commons-codec-1.10.jar
Binary file not shown.
Binary file added framework/lib/commons-codec-1.15.jar
Binary file not shown.
Binary file removed framework/lib/commons-fileupload-1.3.2.jar
Binary file not shown.
Binary file added framework/lib/commons-fileupload-1.4.jar
Binary file not shown.
Binary file added framework/lib/commons-io-2.11.0.jar
Binary file not shown.
Binary file removed framework/lib/commons-io-2.5.jar
Binary file not shown.
Binary file removed framework/lib/dom4j-1.6.1.jar
Binary file not shown.
Binary file not shown.
Binary file removed framework/lib/ehcache-core-2.6.11.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed framework/lib/gson-2.8.6.jar
Binary file not shown.
Binary file added framework/lib/gson-2.8.9.jar
Binary file not shown.
Binary file removed framework/lib/hibernate-c3p0-5.4.1.Final.jar
Binary file not shown.
Binary file removed framework/lib/hibernate-ehcache-5.4.1.Final.jar
Binary file not shown.
Binary file removed framework/lib/ivy-2.4.0.jar
Binary file not shown.
Binary file added framework/lib/ivy-2.5.0.jar
Binary file not shown.
Binary file added framework/lib/jamon-2.82.jar
Binary file not shown.
Binary file removed framework/lib/jandex-2.2.3.Final.jar
Binary file not shown.
Binary file added framework/lib/jandex-2.4.2.Final.jar
Binary file not shown.
Binary file not shown.
Binary file removed framework/lib/jaxb-runtime-2.3.1.jar
Binary file not shown.
Binary file added framework/lib/jaxb-runtime-2.3.6.jar
Binary file not shown.
Binary file removed framework/lib/jboss-logging-3.3.0.Final.jar
Binary file not shown.
Binary file removed framework/lib/jboss-logging-3.4.1.Final.jar
Binary file not shown.
Binary file added framework/lib/jboss-logging-3.4.3.Final.jar
Binary file not shown.
Binary file not shown.
Binary file removed framework/lib/junit-4.12.jar
Binary file not shown.
Binary file added framework/lib/junit-4.13.2.jar
Binary file not shown.
Binary file removed framework/lib/log4j-1.2.17.jar
Binary file not shown.
Binary file added framework/lib/log4j-api-2.17.1.jar
Binary file not shown.
Binary file added framework/lib/log4j-core-2.17.1.jar
Binary file not shown.
Binary file added framework/lib/log4j-slf4j-impl-2.17.1.jar
Binary file not shown.
Binary file removed framework/lib/mchange-commons-java-0.2.12.jar
Binary file not shown.
Binary file added framework/lib/mchange-commons-java-0.2.20.jar
Binary file not shown.
Binary file removed framework/lib/mysql-connector-java-8.0.22.jar
Binary file not shown.
Binary file added framework/lib/mysql-connector-java-8.0.28.jar
Binary file not shown.
Binary file removed framework/lib/org.eclipse.jdt.core-3.23.0.jar
Binary file not shown.
Binary file added framework/lib/org.eclipse.jdt.core-3.28.0.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed framework/lib/slf4j-api-1.7.22.jar
Binary file not shown.
Binary file added framework/lib/slf4j-api-1.7.35.jar
Binary file not shown.
Binary file removed framework/lib/slf4j-log4j12-1.7.22.jar
Binary file not shown.
Binary file removed framework/lib/snakeyaml-1.17.jar
Binary file not shown.
Binary file added framework/lib/snakeyaml-1.30.jar
Binary file not shown.
Binary file not shown.
Binary file added framework/lib/xstream-1.4.19.jar
Binary file not shown.
Binary file removed framework/lib/xstream-1.4.9.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion framework/pym/play/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def isExcluded(path, exclusion_list = None):
if exclusion_list is None:
return False
for exclusion in exclusion_list:
if isParentOf(exclusion, path):
if isParentOf(exclusion, path) or exclusion == path:
return True
return False

Expand Down
Loading