Skip to content

Commit

Permalink
Merge pull request #147 from sbesson/xalan_include
Browse files Browse the repository at this point in the history
Re-include xalan as a dependency of the image-region micro-service
  • Loading branch information
chris-allan authored Jun 6, 2024
2 parents 3eca039 + 4c0e9d0 commit 97209b6
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ configurations.all {
exclude group: 'org.quartz-scheduler'
exclude group: 'org.subethamail'
exclude group: 'xerces'
exclude group: 'xalan'
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
* Copyright (C) 2024 Glencoe Software, Inc. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

package com.glencoesoftware.omero.ms.image.region;

import org.junit.Test;

public class MemoRegeneratorTest {

@Test
public void testXalan() throws ClassNotFoundException {
Class c = Class.forName("org.apache.xalan.xslt.EnvironmentCheck");
}
}

0 comments on commit 97209b6

Please sign in to comment.