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

SAK-50777 Upgrade libs reflectutils and genericdao #13119

Merged
merged 2 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion content-review/impl/turnitin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<artifactId>sakai-common-api</artifactId>
</dependency>
<dependency>
<groupId>org.azeckoski</groupId>
<groupId>org.sakaiproject</groupId>
<artifactId>reflectutils</artifactId>
<version>${reflectutils.version}</version>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion entitybroker/core-providers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<artifactId>sakai-privacy-api</artifactId>
</dependency>
<dependency>
<groupId>org.azeckoski</groupId>
<groupId>org.sakaiproject</groupId>
<artifactId>reflectutils</artifactId>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion entitybroker/impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<artifactId>generic-dao</artifactId>
</dependency>
<dependency>
<groupId>org.azeckoski</groupId>
<groupId>org.sakaiproject</groupId>
<artifactId>reflectutils</artifactId>
</dependency>
<!-- testing -->
Expand Down
2 changes: 1 addition & 1 deletion entitybroker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
</dependency>
<!-- IMPL dependencies -->
<dependency>
<groupId>org.azeckoski</groupId>
<groupId>org.sakaiproject</groupId>
<artifactId>reflectutils</artifactId>
<version>${reflectutils.version}</version>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion entitybroker/rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
</dependency>
<!-- Data processing -->
<dependency>
<groupId>org.azeckoski</groupId>
<groupId>org.sakaiproject</groupId>
<artifactId>reflectutils</artifactId>
</dependency>
<!-- testing -->
Expand Down
3 changes: 1 addition & 2 deletions entitybroker/utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,8 @@
</dependency>
<!-- required for bean cloning and reflection -->
<dependency>
<groupId>org.azeckoski</groupId>
<groupId>org.sakaiproject</groupId>
<artifactId>reflectutils</artifactId>
<type>jar</type>
</dependency>
<!-- required for sending http requests -->
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions kernel/kernel-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,9 @@
<version>3.0.2</version>
</dependency>
<dependency>
<groupId>org.azeckoski</groupId>
<groupId>org.sakaiproject</groupId>
<artifactId>reflectutils</artifactId>
<version>0.9.19</version>
<version>${reflectutils.version}</version>
</dependency>
<dependency>
<groupId>com.sun.mail</groupId>
Expand Down
5 changes: 3 additions & 2 deletions master/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@
<sakai.weld.shaded.version>3.1.9.Final</sakai.weld.shaded.version>
<jayway.jsonpath.version>2.9.0</jayway.jsonpath.version>
<sakai.jakarta.jstl-api.version>1.2.5</sakai.jakarta.jstl-api.version>
<sakai.genericdao.version>0.12.0</sakai.genericdao.version>
<reflectutils.version>0.9.20</reflectutils.version>
<sakai.genericdao.version>0.12.1</sakai.genericdao.version>
<reflectutils.version>0.9.21</reflectutils.version>
<json.simple.version>1.1.1</json.simple.version>
<handlebars4.version>4.4.0</handlebars4.version>
<hamcrest.all.version>1.3</hamcrest.all.version>
Expand Down Expand Up @@ -2878,6 +2878,7 @@
<exclude>commons-logging:commons-logging</exclude>
<exclude>log4j:log4j</exclude>
<exclude>javax.mail:mail</exclude>
<exclude>org.azeckoski:reflectutils</exclude>
</excludes>
</bannedDependencies>
</rules>
Expand Down
5 changes: 0 additions & 5 deletions signup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,6 @@
</dependency>

<!-- third party dependencies -->
<dependency>
<groupId>org.azeckoski</groupId>
<artifactId>reflectutils</artifactId>
<version>${reflectutils.version}</version>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
Expand Down
Loading