Add project info to build configuration

This commit is contained in:
Jarek Sacha 2023-05-22 18:46:39 -04:00
parent 876e62bcd4
commit 08192b13de
No known key found for this signature in database
GPG key ID: F29625CE62288163

View file

@ -1,4 +1,14 @@
scalaVersion := "3.2.2"
scalaVersion := "3.2.2"
name := "IJP-ImageJ-Launcher"
version := "0.1.0"
versionScheme := Some("early-semver")
organization := "net.sf.ij-plugins"
homepage := Some(new URI("https://github.com/ij-plugins/ijp-imagej-launcher").toURL)
startYear := Some(2023)
ThisBuild / licenses := Seq(("Apache-2", new URI("https://opensource.org/license/apache-2-0").toURL))
ThisBuild / developers := List(
Developer(id = "jpsacha", name = "Jarek Sacha", email = "jpsacha@gmail.com", url = url("https://github.com/jpsacha"))
)
enablePlugins(ScalaNativePlugin)