Questions tagged [subproject]

Use this tag for questions related to a subproject, i.e. a project within a larger project.

is used in questions related to the configuration of a subproject (i.e. a project within a larger project.) in Maven, Xcode, Gradle, etc. .

159 questions
0
votes
1 answer

CPack Subprojects and Public Header

I have a question about CPack. I have a project test_lib_1 that depends on 2 other project test_lib_2 and test_lib_3. Both test_lib_2 and 3 define their own CPACK rules, defining PUBLIC_HEADER to be packed. test_lib_1 has the same rule, packaging…
PaoloO
  • 1
0
votes
0 answers

What is the best way to integrate new framework features in an existing project

We're developing a mini-POC framework as a project for a course at our university. The repository is available here We're following a laravel directory structure: The main framework logic is in the liteframework folder The main user added logic is…
Denis Rozimovschii
  • 428
  • 1
  • 6
  • 19
0
votes
0 answers

sbt how to specify dependency to a sibling project

I have a main sbt project which depends on two sbt subprojects, 'util', and 'common'. In addition the common project depends on the util project. In the build.sbt of the common project, how should I specify the dependency to the sibling project…
0
votes
1 answer

Cannot access stylesheet in sub-project

I have (finally) set up a sub-project in the Play Framework but cannot access the stylesheet (for the sub-project). I have the following: Project Structure main-project _build.sbt _app _controllers _models _views _conf …
0
votes
1 answer

Successfully compile a sub-project (admin area) in Play (framework)

I want to set-up an admin area as a sub-project in the Play Framework (2.6) so have been using this documentation but am coming up with a compilation error that I just can't fix: [error] ...conf\routes:15: not found: value admin [error] -> /admin…
0
votes
1 answer

Gradle fails injecting dependencies into subprojects using fileTree

Maybe I'm missing something about the way Gradle works. What I have here is a parent project, which only contains configuration, i.e. there won't be any artifact being built when building it, it merely manages and builds all its subprojects. Now the…
mxk
  • 43,056
  • 28
  • 105
  • 132
0
votes
0 answers

Gradle leaks sourceSet from java rootProject to non-java subProjects

Imagine you have simple multi-project build with one root project and one subproject: root |--sub | `----build.gradle |----build.gradle `----settings.gradle settings.gradle: include ':sub' root/build.gradle: apply plugin:…
Fanick
  • 713
  • 7
  • 25
0
votes
0 answers

Exclude main project .h file in subproject

I have an xcode project importing a subproject . I put both in a same folder. Like this : /app/MainProject /app/folder/SubProject There is some same-name file in both project .Example , both project have "test.h" file When i run the app,…
Jzoker
  • 1
  • 2
0
votes
1 answer

Gradle seems to ignore project dependencies

We have a multi-project build with a intra-project dependencies between the 'included' projects in the settings.gradle. There are a number of interdependencies between the various projects expressed as project dependencies included in the…
Rich Duncan
  • 1,845
  • 1
  • 12
  • 13
0
votes
1 answer

SBT: how to override the default sources (and/or resources etc)?

I've been reading and re-reading the docs, and everywhere it just says that by default sbt uses the project base directory and src/main/scala to look for scala sources, but I could not find any mention of how that default can be changed. I have…
Dima
  • 39,570
  • 6
  • 44
  • 70
0
votes
1 answer

gradle subproject task progect dir

I have a subproject task in a multi project like this task genJaxb { ext.sourcesDir = "/${rootProject.projectDir}/src/resources/xjc" ... The project itself compiles fine, however when I compile the project from the parent project the…
Adam
  • 515
  • 1
  • 5
  • 15
0
votes
0 answers

Qmake: how to export subproject INCLDUEPATHS or how to properly include project as dependency?

Problem: I have subdirs template qmake project. Two in fact. They are unrelated. I was to include second subdir project (or more like certain subdirs of that project) into first one and start using that. For example let the first project consists of…
Dan M.
  • 3,818
  • 1
  • 23
  • 41
0
votes
1 answer

XCode SubProject configuration

due to working needs, I need to integrate an xcodeproj into my existing project as subproject. The structure of my two projects is the following Structure of the two projects What is the best practice to integrate (no cocoapods) the subProject into…
0
votes
1 answer

Eclipse command for Play 2.4 application with sub projects

I have a Play 2.4.2 project with two sub-projects. I have my build.sbt declared like this - lazy val abc = (project in file("modules/abc")).enablePlugins(PlayScala) lazy val def = (project in file("modules/def")).enablePlugins(PlayScala,…
Khalid Saifullah
  • 747
  • 2
  • 8
  • 21
0
votes
1 answer

Referring to an .h class of a subproject

the Dropbox iOS SDK has its own Framework bundle but in order to customize it easily I ve chosen to include its Xcode project as a subproject. How should i refer to its .h classes? I ve added the .xcodeproj from the "Add files" button and I ve…