fr.ird.observe.toolkit.maven.plugin.tck.TckGenerateArchiveMojo Maven / Gradle / Ivy
package fr.ird.observe.toolkit.maven.plugin.tck;
/*-
* #%L
* ObServe Toolkit :: Maven plugin
* %%
* Copyright (C) 2017 - 2022 Ultreia.io
* %%
* 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 3 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, see
* .
* #L%
*/
import fr.ird.observe.spi.migration.ByMajorMigrationVersionResource;
import fr.ird.observe.test.DataSourcesForTestManager;
import fr.ird.observe.toolkit.maven.plugin.PersistenceMojoSupport;
import io.ultreia.java4all.i18n.spi.builder.I18nKeySet;
import io.ultreia.java4all.util.Version;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import java.io.File;
import java.io.IOException;
/**
* Created on 19/11/2021.
*
* @author Tony Chemit - [email protected]
* @since 5.0.55
*/
@Mojo(name = "tck-generate-archive", threadSafe = true, defaultPhase = LifecyclePhase.PROCESS_CLASSES)
public class TckGenerateArchiveMojo extends PersistenceMojoSupport {
@Parameter(property = "runner.modelVersion", defaultValue = "${persistence.previous.model.version}", required = true)
private String previousModelVersion;
@Parameter(property = "runner.archiveFile", defaultValue = "${tck.cache.path}/${tck.filename}", required = true)
private File archiveFile;
@Parameter(property = "runner.targetArchiveFile", defaultValue = "${project.build.directory}/${tck.updated.filename}", required = true)
private File targetArchiveFile;
@Override
protected void doAction(I18nKeySet getterFile, ClassLoader classLoader) throws IOException {
DataSourcesForTestManager dataSourcesForTestManager = new DataSourcesForTestManager();
ByMajorMigrationVersionResource.setForTck(true);
ByMajorMigrationVersionResource.setClassLoader(classLoader);
try {
super.doAction(getterFile, classLoader);
} finally {
ByMajorMigrationVersionResource.setForTck(false);
ByMajorMigrationVersionResource.setClassLoader(null);
dataSourcesForTestManager.clearCache();
}
}
@Override
protected GenerateTckArchive createRunner() {
GenerateTckArchive runner = new GenerateTckArchive();
runner.setPreviousModelVersion(Version.valueOf(previousModelVersion));
runner.setArchiveFile(archiveFile.toPath());
runner.setTargetArchiveFile(targetArchiveFile.toPath());
return runner;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy