Questions tagged [multi-project]

319 questions
1
vote
2 answers

Using my own library : implicit declaration of function

Firstly, I'd like to thanks you in advance for the time you'll take to help me out. If I may suggest you, you can try reproduce my problem. Don't try to read the makefiles if you don't feel it'll help you to understand my problem. Also, I'd like to…
Cédric M.
  • 1,142
  • 3
  • 12
  • 23
1
vote
1 answer

Play 2.3.7 sbt multiproject compiler issue

we're using Play framework 2.3.7 and have set up a multiproject with sbt (sbt version 0.13.5), which is consisting of four modules. In the build.sbt file of the project root we define the modules: lazy val common = (project in…
devDomm
  • 401
  • 2
  • 10
1
vote
1 answer

Scala build.sbt: Solving dependency recursions

I just started with SBT's Multi-Project-Builds and I ran into an interesting problem that I have not seen a good example for in the scala-sbt docs. In my build.sbt, Project B and C are dependent on A, but B is also dependent on C (at least…
1
vote
0 answers

Replace doc by unidoc in publish-local

I have a sbt project in a multi-prject structure. So I want to use unidoc for documentation generation. But publish-local uses always doc. How can you replace doc by unidoc. I am using sbt 0.12.4. I found this Disable sbt subproject doc…
Jeans
  • 21
  • 3
1
vote
3 answers

Is it possible to deploy two different sinatra/padrino projects in the same server?

I'm planning to build several tiny apps in Sinatra or Padrino and deploy them on the same server for sake of economy. Each app will be its own independent domain name (not subdomain), e.g.: www.foo.com -> Project /foo www.bar.com -> Project…
Sony Santos
  • 5,435
  • 30
  • 41
1
vote
1 answer

Executing integration tests in gradle

Me and my team are working on a project with a lot of modules. We are using gradle for the project and everyone is new to gradle. We have a Main parent project i.e, parent build with the details of project dependencies. We want to add the…
1
vote
1 answer

Can SBT use subprojects' dependency conf to build the subprojects in order automatically? [multi project build]

Current situation I have the following directory structure for scala projects: ~/development/projects/projectA ~/development/projects/projectB ~/development/projects/projectC ... I wrote an sbt build definition to build all the projects from a root…
user573215
  • 4,679
  • 5
  • 22
  • 25
1
vote
2 answers

Visual Studio Multi Project Template : Project Reference Issues

Context : I'm currently working on a VB.NET multi-project template with cross-references between them, which works almost fine. Problem : VS generates new GUIDs for each project generated and updates them into the new .sln and each new .vbproj but…
1
vote
1 answer

How would one configure a Gradle project in which a subproject depends on the main project?

I have a mini-application in my source code which I am trying to move to a separate subproject. However, the mini-application depends on the main project. How would one set up a build.gradle file to reflect this? Here is my directory structure: / …
mattbdean
  • 2,532
  • 5
  • 26
  • 58
1
vote
1 answer

Calling Various Package From Different Projects

Okay , I am not sure if this is possible or not , Might sound dumb too , Forgive me for that , But is it possible say for example i am using netbeans and i have created various project and they have one package in each which contains certain…
1
vote
1 answer

Linked source folders

I'm using the Gradle eclipse plugin and I'm trying to connect two project. One of these project is a library and gets never exported since I just link to the library source in real projects. The other project should have a virtual link to the…
Aich
  • 962
  • 2
  • 9
  • 19
1
vote
0 answers

how to create a multi-project spring mvc (with frontend and backend project)

I am newbie with spring mvc and i want to create a multi-project application with maven, with frontend in a project (css, javascript and html) using angularjs and requirejs, and a backend project with spring mvc with access to a mongodb database, so…
1
vote
1 answer

SVN: How to replicate Tortoise's multi-project commit on the commandline

I have found similar questions, but none is definitely answering my question. I read, e.g.: How can I commit multiple directories at once using subversion? Commit several projects in Eclipse SVN How can I do a single SVN commit across multiple…
fieres
  • 736
  • 7
  • 10
1
vote
1 answer

How To Shadow Multi Project Gradle Application

I have a build.gradle file I am using to replace an old maven pom.xml composed of 2 modules and a third sub-module. I moved it to gradle in this way: apply plugin: 'java' apply plugin: 'eclipse' apply plugin: 'groovy' buildscript { repositories…
Randomize
  • 8,651
  • 18
  • 78
  • 133
1
vote
2 answers

Gradle multiproject optional subproject's transitive dependency should be resolved to an existing subproject

suppose the following project. the master project is a multi-project, however every part of the larger project can be developed individually or mixed in: /master/build.gradle /m1/build.gradle /m2/build.gradle /m3/build.gradle suppose m3 uses m2 and…