Skip to content

Commit

Permalink
#3611 - Upgrade to Spring 6, Boot 3, Wicket 10, etc.
Browse files Browse the repository at this point in the history
- Fix compatibility of knowledge base type column with Hibernate 6
  • Loading branch information
reckart committed Jun 13, 2023
1 parent 14d38be commit d6fccd5
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

import org.hibernate.annotations.OnDelete;
import org.hibernate.annotations.OnDeleteAction;
import org.hibernate.annotations.Type;

import de.tudarmstadt.ukp.clarin.webanno.model.Project;
import de.tudarmstadt.ukp.inception.kb.IriConstants;
Expand Down Expand Up @@ -82,6 +83,7 @@ public class KnowledgeBase
private String name;

@Enumerated
@Type(KnowledgeBaseType.class)
private RepositoryType type;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/*
* Licensed to the Technische Universität Darmstadt under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The Technische Universität Darmstadt
* licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.tudarmstadt.ukp.inception.kb.model;

import de.tudarmstadt.ukp.clarin.webanno.support.PersistentEnumIntegerUserType;
import de.tudarmstadt.ukp.inception.kb.RepositoryType;

public class KnowledgeBaseType
extends PersistentEnumIntegerUserType<RepositoryType>
{
private static final long serialVersionUID = 1L;

@Override
public Class<RepositoryType> returnedClass()
{
return RepositoryType.class;
}
}
2 changes: 1 addition & 1 deletion inception/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
<!-- For Bootstrap 6.0.0-SNAPSHOT etc. -->
<repository>
<id>oss.sonatype.org-snapshot</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
Expand Down

0 comments on commit d6fccd5

Please sign in to comment.