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
1
vote
1 answer

Adding sub-project in swift

I have 2 projects in a workspaces, both are built using Swift. I want to use one of the project as a sub-project of the other one and the classes, which are in the sub-project, in the parent project. My sub-project is using bridging-header. I have…
chandvoid
  • 133
  • 1
  • 12
1
vote
1 answer

Play Framework 2.4.x - Subprojects with database

Heys guys, I hope you can really help me with subprojects in Play Framework 2.4.x. I'm developing a Play project (I call it root) with a subproject. Both do have ebean models and I want to save these models in different databases. I tried many…
Milgo
  • 2,617
  • 4
  • 22
  • 37
1
vote
1 answer

Using Play Framework JAR subproject

I'm working with multiple Java Play projects and I want to work with my subproject in a different way than I do now but I don't know how to do that. I'm working with three projects, let's call them A, B and Sub. Sub is my subproject and it used in A…
Milgo
  • 2,617
  • 4
  • 22
  • 37
1
vote
1 answer

How to create subprojects inside Play with Intellij?

Currently I have the following Play project structure: PlayApp modules common sub_project_two PlayApp is marked as a module, dependent on common. modules is just a directory. common is a sub project(also a play app). sub_project_two is a sub…
iCodeLikeImDrunk
  • 17,085
  • 35
  • 108
  • 169
1
vote
0 answers

Play framework sub-projects - write to console from all sub-projects?

I am developing a web application using Play! Framework 2.2.1 and Java 8. Recently i divided my project to multiple sub-projects , and now it is seems to be that only one sub-project can write to the console (System.out). For example , when i have…
OmriKaduri
  • 186
  • 8
1
vote
2 answers

How to separate subproject classpaths in Eclipse?

I know that there is a Git plugin for Eclipse ("Egit"), but I like to do Git stuff on the command line, and I like to code in Eclipse, so I want to keep them separate. I cloned a Git repo (I don't think its important, but for good measure, it was…
DirtyMikeAndTheBoys
  • 1,077
  • 3
  • 15
  • 29
1
vote
1 answer

play2 using main project views/controllers/models in submodule/subproject and inversely

I have: main project sub project called "shopping" I would like to use views from main project inside the subproject. My code of sub project controller: package controllers.shopping; public class Application extends Controller { public static…
masterdany88
  • 5,041
  • 11
  • 58
  • 132
1
vote
1 answer

Play sbt subProjects routes: shopping.routes:5: object Application is not a member of package controllers.shopping

Please give me some advice. I am following this: https://www.playframework.com/documentation/2.2.x/SBTSubProjects What I am doing wrong? I have error with sub project routes: shopping.routes:5: object Application is not a member of package…
masterdany88
  • 5,041
  • 11
  • 58
  • 132
1
vote
1 answer

Making a Studio/Gradle project build both locally and inside another project

I don’t know how common this situation is but here’s what worked for me. The question is: Is this sane, or is there a better way? tl;dr: dependencies { // remove trailing ':Lib' ppath = project.path ppath = ppath.substring(0,…
Tim Bray
  • 1,653
  • 11
  • 16
1
vote
0 answers

Deugging subprojects in Xcode

I have a Xcode project which contains multiple subprojects (3rd party libraries). These subprojects are compiled into static libraries during build generation. The problem which I am facing is the breakpoints wont work inside those subprojects. I am…
bitsandgates
  • 315
  • 1
  • 3
  • 7
1
vote
1 answer

How to "seq" plugin settings in a multi-project sbt build

I am converting a single-project build.sbt to a multi-project build.sbt, which is always a PITA. There is this obscure syntax to make plugin settings available. E.g. before seq(appbundle.settings: _*) How do I do this with sub-projects. E.g. lazy…
0__
  • 66,707
  • 21
  • 171
  • 266
1
vote
1 answer

sqlite undefined error in apportable when convert ios project to android

When i compile project tis issuse will be created. does sqlite support apportable ? Linking Build/android-armeabi-debug/touchandmove22/apk/lib/armeabi/libverde.so /Users/idc0013/touchandmove22/Database.m:28: error: undefined reference to…
anil72178
  • 67
  • 8
1
vote
1 answer

Play Framework 2.2.1 - Adding non-play Java Project as sub-project

I am trying to add a non-play Java project as a sub-project. The main project is a Play Java Application and the sub-project is in the same directory as the main-project. I am following instruction given here. My build.sbt looks like import…
waqas
  • 124
  • 1
  • 10
1
vote
2 answers

Using subproject Artifacts in Android Build with gradle

im still quite new to gradle. I decided to transfer some code i oft use into an subproject. This subproject is a pure java project, so im using only the apply plugin: 'java' there. I can build this project and in the build folder is see a jar which…
Kitesurfer
  • 3,438
  • 2
  • 29
  • 47
1
vote
1 answer

Playframework 2.2 with scala and sub-projects

I have been trying to build up a project with some subprojects but I cannot get it to work as I want.. What I have now is a Play scala main project. I added two sub-modules, domain and infrastructure. I want everything to depend on everything. What…
malmling
  • 2,398
  • 4
  • 19
  • 33