opencast-studio
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.opencastproject</groupId>
<artifactId>opencast-studio</artifactId>
<version>18.5</version>
</dependency><?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>opencast-studio</artifactId>
<packaging>bundle</packaging>
<name>Opencast :: studio</name>
<parent>
<groupId>org.opencastproject</groupId>
<artifactId>base</artifactId>
<version>18.5</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<properties>
<opencast.basedir>${project.basedir}/../..</opencast.basedir>
<checkstyle.skip>false</checkstyle.skip>
<opencast.studio.url>https://github.com/opencast/studio/releases/download/2025-12-17/oc-studio-2025-12-18-integrated.tar.gz</opencast.studio.url>
<opencast.studio.sha256>cba5f7b617c82c24ac048e63eb76be9ebf5fa2630dfdce7da4f919538e21e376</opencast.studio.sha256>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>download-maven-plugin</artifactId>
<executions>
<execution>
<id>fetch-oc-studio</id>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>${opencast.studio.url}</url>
<sha256>${opencast.studio.sha256}</sha256>
<unpack>true</unpack>
<outputDirectory>${project.build.directory}/classes/opencast-studio/</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Private-Package>opencast-studio.*</Private-Package>
<Http-Alias>/studio</Http-Alias>
<Http-Spa-Redirect>true</Http-Spa-Redirect>
<Http-Classpath>/opencast-studio</Http-Classpath>
<Http-Welcome>index.html</Http-Welcome>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>