Skip to content

Commit

Permalink
No issue: Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
reckart committed Aug 3, 2024
1 parent b21b170 commit 3f671a3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@
*/
package org.dkpro.core.doc;

import static groovy.io.FileType.FILES;
import org.dkpro.meta.core.MetadataAggregator
import org.dkpro.meta.core.model.MetadataModel
import org.dkpro.meta.core.maven.ContextHolder
import org.yaml.snakeyaml.Yaml

class DocumentationBuilder {
public void run() {
File dkproCorePath = new File(ContextHolder.basedir, '..');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
*/
package org.dkpro.core.doc

import static groovy.io.FileType.FILES;
import org.dkpro.meta.core.maven.ContextHolder
import groovy.xml.XmlParser

class PomSanityCheck {
public void run() {
ContextHolder.log.info("Running POM sanity check ${ContextHolder.basedir}...")
Expand Down
2 changes: 2 additions & 0 deletions dkpro-core-doc/src/main/groovy/org/dkpro/core/doc/Util.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
*/
package org.dkpro.core.doc

import java.text.BreakIterator

class Util {
static def editOnGithub(url)
{
Expand Down

0 comments on commit 3f671a3

Please sign in to comment.