Skip to content

Commit

Permalink
Merge branch 'IvyConf' into 'master'
Browse files Browse the repository at this point in the history
ivy configurations fixed

See merge request exedio/copeconsole!86
  • Loading branch information
rw7 committed Jun 5, 2024
2 parents 37ae248 + 3ba3f3f commit 9b46854
Show file tree
Hide file tree
Showing 21 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ try
assertGitUnchanged()

// There should be an assertIvyExtends for each <conf name="abc" extends="def" /> in ivy/ivy.xml.
assertIvyExtends("runtime", "compile")
assertIvyExtends("test", "runtime")
assertIvyExtends("example", "runtime")
assertIvyExtends("ide", "runtime")
assertIvyExtends("ide", "test")
}
Expand Down
8 changes: 4 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
<target name="src.compile" depends="src.jspm">
<compile srcdir="src">
<classpath>
<fileset dir="lib/compile" />
<fileset dir="lib/runtime" />
</classpath>
</compile>
</target>
Expand Down Expand Up @@ -175,7 +175,7 @@
<fileset dir="build/classes/websrc" />
</copy>
<copy todir="web/WEB-INF/lib">
<fileset dir="lib/runtime">
<fileset dir="lib/example">
<exclude name="javax.servlet-api.jar" />
</fileset>
</copy>
Expand Down Expand Up @@ -258,7 +258,7 @@
<fileset file="src/com" includes="**/*.java" />
<arg value="-Xdoclint:all,-missing" />
<classpath>
<fileset dir="lib/compile" />
<fileset dir="lib/runtime" />
<pathelement location="lib/instrument/exedio-cope-instrument-annotations.jar" />
</classpath>
</javadoc>
Expand All @@ -272,7 +272,7 @@
fork="yes" failonerror="yes">
<classpath>
<pathelement location="build/classes/src" />
<fileset dir="lib/compile" />
<fileset dir="lib/runtime" />
</classpath>
<arg value="build/testprotocol.html"/>
<assertions><enable/></assertions>
Expand Down
16 changes: 8 additions & 8 deletions ivy/ivy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
</info>
<configurations>
<!-- There should be an assertIvyExtends in Jenkinsfile for each <conf name="abc" extends="def" /> here. -->
<conf name="compile" />
<conf name="runtime" extends="compile" />
<conf name="runtime" />
<conf name="changelog" />
<conf visibility="private" name="jspm" />
<conf visibility="private" name="instrument" />
<conf visibility="private" name="test" extends="runtime" />
<conf visibility="private" name="example" extends="runtime" />
<conf visibility="private" name="ant" />
<conf visibility="private" name="ant-contrib" />
<conf visibility="private" name="ivy" />
Expand All @@ -33,13 +33,13 @@
<artifact name="exedio-cope-console" conf="changelog" type="log" ext="txt" />
</publications>
<dependencies>
<dependency org="javax.servlet" name="javax.servlet-api" rev="3.1.0" conf="compile->default; ide->sources" />
<dependency org="javax.servlet" name="javax.servlet-api" rev="3.1.0" conf="runtime->default; ide->sources" />
<dependency org="junit" name="junit" rev="4.10" conf="test->default">
<exclude org="org.hamcrest" />
</dependency>
<dependency org="com.exedio" name="cops" rev="388" conf="compile->runtime; ide->runtime,sources,changelog" />
<dependency org="com.exedio" name="cope" rev="10926" conf="compile->runtime; runtime->hsqldb,mysql; instrument->instrument; ide->sources,changelog" />
<dependency org="com.exedio" name="copeutil" rev="857" conf="compile->runtime; ide->sources,changelog" />
<dependency org="com.exedio" name="cops" rev="388" conf="runtime->runtime; ide->runtime,sources,changelog" />
<dependency org="com.exedio" name="cope" rev="10926" conf="runtime->runtime; test,example->hsqldb,mysql; instrument->instrument; ide->sources,changelog" />
<dependency org="com.exedio" name="copeutil" rev="857" conf="runtime->runtime; ide->sources,changelog" />
<dependency org="org.apache.ant" name="ant" rev="1.10.11" conf="ant->default" />
<dependency org="org.apache.ant" name="ant-junit" rev="1.10.11" conf="ant->default">
<exclude org="junit" module="junit" />
Expand All @@ -52,8 +52,8 @@
<dependency org="org.apache.tomcat" name="tomcat" rev="9.0.31" conf="tomcat->default">
<artifact name="tomcat" type="tar.gz" />
</dependency>
<dependency org="org.slf4j" name="slf4j-api" rev="1.7.25" conf="compile->default; ide->sources" />
<dependency org="ch.qos.logback" name="logback-classic" rev="1.1.3" conf="runtime->default" />
<dependency org="org.slf4j" name="slf4j-api" rev="1.7.25" conf="runtime->default; ide->sources" />
<dependency org="ch.qos.logback" name="logback-classic" rev="1.1.3" conf="example->default" />
<!--
This project depends on micrometer for accessing meters created by cope. It does not
create meters on its own. Therefore it does not require the micrometer dependency
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file removed lib/runtime/logback-classic.jar
Binary file not shown.
Binary file removed lib/runtime/logback-core.jar
Binary file not shown.
Binary file removed lib/test/logback-classic.jar
Binary file not shown.
Binary file removed lib/test/logback-core.jar
Binary file not shown.

0 comments on commit 9b46854

Please sign in to comment.