how to define my artifact groupId?

kostas.kougios

I have an sbt project that I need publish-local and then use it from an other project as a "libraryDependencies". It all builds fine but the groupId of the artifact is the same as the name of it. Can I specify the groupId somehow in my build.sbt?

eugen-fried

There is organization setting for this purpose. An example from AkkaBuild.scala

lazy val buildSettings = Seq(
    organization        := "com.typesafe.akka",
    version             := "2.4-SNAPSHOT",
    scalaVersion        := Dependencies.Versions.scalaVersion,
    crossScalaVersions  := Dependencies.Versions.crossScala
  )

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to specify groupid, artifact and version directly in dependencies section of BUILD file using Bazel?

From Dev

How to repair my POM with missing artifact?

From Dev

How to integrate Proguard obfuscation in my JavaFX's IntelliJ artifact?

From Dev

How to integrate Proguard obfuscation in my JavaFX's IntelliJ artifact?

From Dev

What is an artifact, and how do I separate my projects?

From Dev

How should I define my polymorphic tables?

From Dev

How to define my function from a string?

From Dev

How do I correctly define my variables?

From Dev

How to define built in function in "my" python interpreter?

From Dev

How do I define my endpoint?

From Dev

How can I define my REST API?

From Dev

maven build fails only in Jenkins - artifact {null:null:null:jar}: The groupId cannot be empty

From Dev

Who is using my maven artifact?

From Dev

How can I instruct a build to use their dependency version if they have one, else use the one in my artifact

From Dev

How to know everytime how to define my variables/placeholders shape in Tensorflow

From Dev

Failed to read artifact descriptor for artifact present in my localhost Nexus repo

From Dev

How do I define my app home screen group name?

From Dev

TypeScript: How do I define a static array of strings in my directive

From Dev

How to define FOREIGN KEY constraint in mysql in my case not working

From Dev

How do I define my own operators in TensorFlow

From Dev

Next is not defined, but I don't understand how to define it in my function

From Dev

How can I define my controller using TypeScript?

From Dev

How to define my own version of filter procedure in racket?

From Dev

How to define a variable to link my google sheets in Tkinter?

From Dev

How do I define my app home screen group name?

From Dev

How define the my OpenUI5 application by a graphic editor

From Dev

How do I define static array in .cpp file of my class

From Dev

How i can define custom controller in my controller in sap ui?

From Dev

How Can i Define A javascript Variable in My Ajax url

Related Related

  1. 1

    How to specify groupid, artifact and version directly in dependencies section of BUILD file using Bazel?

  2. 2

    How to repair my POM with missing artifact?

  3. 3

    How to integrate Proguard obfuscation in my JavaFX's IntelliJ artifact?

  4. 4

    How to integrate Proguard obfuscation in my JavaFX's IntelliJ artifact?

  5. 5

    What is an artifact, and how do I separate my projects?

  6. 6

    How should I define my polymorphic tables?

  7. 7

    How to define my function from a string?

  8. 8

    How do I correctly define my variables?

  9. 9

    How to define built in function in "my" python interpreter?

  10. 10

    How do I define my endpoint?

  11. 11

    How can I define my REST API?

  12. 12

    maven build fails only in Jenkins - artifact {null:null:null:jar}: The groupId cannot be empty

  13. 13

    Who is using my maven artifact?

  14. 14

    How can I instruct a build to use their dependency version if they have one, else use the one in my artifact

  15. 15

    How to know everytime how to define my variables/placeholders shape in Tensorflow

  16. 16

    Failed to read artifact descriptor for artifact present in my localhost Nexus repo

  17. 17

    How do I define my app home screen group name?

  18. 18

    TypeScript: How do I define a static array of strings in my directive

  19. 19

    How to define FOREIGN KEY constraint in mysql in my case not working

  20. 20

    How do I define my own operators in TensorFlow

  21. 21

    Next is not defined, but I don't understand how to define it in my function

  22. 22

    How can I define my controller using TypeScript?

  23. 23

    How to define my own version of filter procedure in racket?

  24. 24

    How to define a variable to link my google sheets in Tkinter?

  25. 25

    How do I define my app home screen group name?

  26. 26

    How define the my OpenUI5 application by a graphic editor

  27. 27

    How do I define static array in .cpp file of my class

  28. 28

    How i can define custom controller in my controller in sap ui?

  29. 29

    How Can i Define A javascript Variable in My Ajax url

HotTag

Archive