forked from schadr/ChatToSucceed
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththesis.bib
More file actions
4976 lines (4536 loc) · 217 KB
/
Copy paththesis.bib
File metadata and controls
4976 lines (4536 loc) · 217 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@article{vangurp:jss:2002,
author = {van Gurp, Jilles and Bosch, Jan},
title = {{Design Erosion: Problems and Causes}},
journal = {Journal of Systems and Software},
issue_date = {March 2002},
volume = {61},
number = {2},
month = mar,
year = {2002},
issn = {0164-1212},
pages = {105--119},
numpages = {15},
url = {http://dx.doi.org/10.1016/S0164-1212(01)00152-2},
doi = {10.1016/S0164-1212(01)00152-2},
acmid = {605030},
publisher = {Elsevier Science Inc.},
address = {New York, NY, USA},
}
@inproceedings{damian:ctgdsd:2012,
author={Damian, D. and Lassenius, C. and Paasivaara, M. and Borici, A. and Schroter, A.},
booktitle={Collaborative Teaching of Globally Distributed Software Development Workshop (CTGDSD), 2012},
title={Teaching a globally distributed project course using Scrum practices},
year={2012},
month={june},
volume={},
number={},
pages={30 -34},
keywords={Aalto University;Scrum practices;University of Victoria;distributed environment;globally distributed project course;globally distributed software development course;open-source backlog management system;project-driven collaboration course;computer science education;project management;software development management;software prototyping;},
doi={10.1109/CTGDSD.2012.6226947},
ISSN={},}
@phdthesis{kwan:phd,
author = {Kwan, Irwin},
title = {{The Study of Scoio-Technical Coordination using a Socio-Technical Congruence Model}},
school = {University of Victoria},
year = {2011}
}
@inproceedings{nguyen:icse:2011,
author = {Nguyen, Tung Thanh and Nguyen, Tien N. and Phuong, Tu Minh},
title = {Topic-based defect prediction (NIER track)},
booktitle = {Proceedings of the 33rd International Conference on Software Engineering},
series = {ICSE '11},
year = {2011},
isbn = {978-1-4503-0445-0},
location = {Waikiki, Honolulu, HI, USA},
pages = {932--935},
numpages = {4},
url = {http://doi.acm.org/10.1145/1985793.1985950},
doi = {10.1145/1985793.1985950},
acmid = {1985950},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {defect prediction, topic modeling},
}
@inproceedings{borici:chase:2012,
author = {Borici, Arber and Schr{\"o}ter, Adrian and Damian, Daniela and Blincoe, Kelly and Valetto, Guiseppe},
title = {{ProxiScientia: Toward Real-Time Visualization of Task and Developer Dependencies in Collaborating Software Development Teams}},
booktitle = {Proceedings of the 5th International Workshop on Cooperative and Human Aspects of Software Enginering},
series = {CHASE 2012},
year = {2012},
isbn = {978-1-4503-0445-0},
location = {Zurich, Switzerland},
pages = {932--935},
numpages = {4},
acmid = {1985950},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {defect prediction, topic modeling},
}
@inproceedings{giger:msr:2011,
author = {Giger, Emanuel and Pinzger, Martin and Gall, Harald C.},
title = {Comparing fine-grained source code changes and code churn for bug prediction},
booktitle = {Proceedings of the 8th Working Conference on Mining Software Repositories},
series = {MSR '11},
year = {2011},
isbn = {978-1-4503-0574-7},
location = {Waikiki, Honolulu, HI, USA},
pages = {83--92},
numpages = {10},
url = {http://doi.acm.org/10.1145/1985441.1985456},
doi = {10.1145/1985441.1985456},
acmid = {1985456},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {code churn, nonlinear regression, prediction models, software bugs, source code changes},
}
@inproceedings{moser:icse:2008,
author = {Moser, Raimund and Pedrycz, Witold and Succi, Giancarlo},
title = {A comparative analysis of the efficiency of change metrics and static code attributes for defect prediction},
booktitle = {Proceedings of the 30th international conference on Software engineering},
series = {ICSE '08},
year = {2008},
isbn = {978-1-60558-079-1},
location = {Leipzig, Germany},
pages = {181--190},
numpages = {10},
url = {http://doi.acm.org/10.1145/1368088.1368114},
doi = {10.1145/1368088.1368114},
acmid = {1368114},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {cost-sensitive classification, defect prediction, software metrics},
}
@inproceedings{nguyen:icse:2010,
author = {Nguyen, Tung Thanh and Nguyen, Hoan Anh and Pham, Nam H. and Al-Kofahi, Jafar and Nguyen, Tien N.},
title = {{Recurring Bug Fixes in Object-Oriented Programs}},
booktitle = {Proceedings of the 32nd ACM/IEEE International Conference on Software Engineering - Volume 1},
series = {ICSE 2010},
year = {2010},
isbn = {978-1-60558-719-6},
location = {Cape Town, South Africa},
pages = {315--324},
numpages = {10},
url = {http://doi.acm.org/10.1145/1806799.1806847},
doi = {10.1145/1806799.1806847},
acmid = {1806847},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{zimmermann:icse:2004,
author = {Zimmermann, Thomas and Weisgerber, Peter and Diehl, Stephan and Zeller, Andreas},
title = {Mining Version Histories to Guide Software Changes},
booktitle = {Proceedings of the 26th International Conference on Software Engineering},
series = {ICSE '04},
year = {2004},
isbn = {0-7695-2163-0},
pages = {563--572},
numpages = {10},
url = {http://dl.acm.org/citation.cfm?id=998675.999460},
acmid = {999460},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@inproceedings{zimmermann:fse:2009,
author = {Zimmermann, Thomas and Nagappan, Nachiappan and Gall, Harald and Giger, Emanuel and Murphy, Brendan},
title = {Cross-project defect prediction: a large scale experiment on data vs. domain vs. process},
booktitle = {Proceedings of the the 7th joint meeting of the European software engineering conference and the ACM SIGSOFT symposium on The foundations of software engineering},
series = {ESEC/FSE '09},
year = {2009},
isbn = {978-1-60558-001-2},
location = {Amsterdam, The Netherlands},
pages = {91--100},
numpages = {10},
url = {http://doi.acm.org/10.1145/1595696.1595713},
doi = {10.1145/1595696.1595713},
acmid = {1595713},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {churn, cross-project, decision trees, defect prediction, logistic regression, prediction quality},
}
@inproceedings{shihab:fse:2011,
author = {Shihab, Emad and Mockus, Audris and Kamei, Yasutaka and Adams, Bram and Hassan, Ahmed E.},
title = {High-impact defects: a study of breakage and surprise defects},
booktitle = {Proceedings of the 19th ACM SIGSOFT symposium and the 13th European conference on Foundations of software engineering},
series = {ESEC/FSE '11},
year = {2011},
isbn = {978-1-4503-0443-6},
location = {Szeged, Hungary},
pages = {300--310},
numpages = {11},
url = {http://doi.acm.org/10.1145/2025113.2025155},
doi = {10.1145/2025113.2025155},
acmid = {2025155},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {defect prediction, high-impact, process metrics},
}
@inproceedings{shihab:esem:2010,
author = {Shihab, Emad and Jiang, Zhen Ming and Ibrahim, Walid M. and Adams, Bram and Hassan, Ahmed E.},
title = {Understanding the impact of code and process metrics on post-release defects: a case study on the Eclipse project},
booktitle = {Proceedings of the 2010 ACM-IEEE International Symposium on Empirical Software Engineering and Measurement},
series = {ESEM '10},
year = {2010},
isbn = {978-1-4503-0039-1},
location = {Bolzano-Bozen, Italy},
pages = {4:1--4:10},
articleno = {4},
numpages = {10},
url = {http://doi.acm.org/10.1145/1852786.1852792},
doi = {10.1145/1852786.1852792},
acmid = {1852792},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {code metrics, post-release defects, process metrics, software quality analysis},
}
@inproceedings{zimmermann:esem:2009,
author = {Zimmermann, Thomas and Nagappan, Nachiappan},
title = {{Predicting Defects with Program Dependencies}},
booktitle = {Proceedings of the 2009 3rd International Symposium on Empirical Software Engineering and Measurement},
series = {ESEM '09},
year = {2009},
isbn = {978-1-4244-4842-5},
pages = {435--438},
numpages = {4},
url = {http://dx.doi.org/10.1109/ESEM.2009.5316024},
doi = {10.1109/ESEM.2009.5316024},
acmid = {1671301},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@inproceedings{dualaekoko:esem:2009,
author = {Duala-Ekoko, Ekwa and Robillard, Martin P.},
title = {A detailed examination of the correlation between imports and failure-proneness of software components},
booktitle = {Proceedings of the 2009 3rd International Symposium on Empirical Software Engineering and Measurement},
series = {ESEM '09},
year = {2009},
isbn = {978-1-4244-4842-5},
pages = {34--43},
numpages = {10},
url = {http://dx.doi.org/10.1109/ESEM.2009.5316047},
doi = {10.1109/ESEM.2009.5316047},
acmid = {1671253},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@inproceedings{matsumura:isese:2002,
author={Matsumura, Tomoko and Monden, Akito and Matsumoto, Ken-ichi},
booktitle={Empirical Software Engineering, 2002. Proceedings. 2002 International Symposium n}, title={{The Detection of Faulty Code Violating Implicit Coding Rules}},
year={2002},
month={},
volume={},
number={},
pages={ 173 - 182},
keywords={ code fragments; code patterns; expert maintainer; faulty code fragments; faulty code violating implicit coding rules; implicit coding rules; legacy software maintenance; pattern description language; pattern matching; software evolution; software fault tolerance; software maintenance;},
doi={10.1109/ISESE.2002.1166936},
ISSN={ },}
@inproceedings{arisholm:isese:2006,
author = {Arisholm, Erik and Briand, Lionel C.},
title = {Predicting fault-prone components in a java legacy system},
booktitle = {Proceedings of the 2006 ACM/IEEE international symposium on Empirical software engineering},
series = {ISESE '06},
year = {2006},
isbn = {1-59593-218-6},
location = {Rio de Janeiro, Brazil},
pages = {8--17},
numpages = {10},
url = {http://doi.acm.org/10.1145/1159733.1159738},
doi = {10.1145/1159733.1159738},
acmid = {1159738},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{li:metrics:2005,
author={Li, P.L. and Herbsleb, J. and Shaw, M.},
booktitle={Software Metrics, 2005. 11th IEEE International Symposium}, title={Finding predictors of field defects for open source software systems in commonly available data sources: a case study of OpenBSD},
year={2005},
month={sept.},
volume={},
number={},
pages={10 pp. -32},
keywords={Kendall rank correlation;OpenBSD;Pearson rank correlation;business software applications;code repository;data mining;data sources;deployment metrics;development metrics;field defect prediction;forward AIC model selection;hardware configuration metrics;mailing list archives;open source software components;open source software systems;product metrics;request tracking system;software metrics;software reliability;statistical methods;usage metrics;configuration management;data mining;public domain software;software metrics;software quality;software reliability;statistical analysis;},
doi={10.1109/METRICS.2005.26},
ISSN={1530-1435},}
@inproceedings{nikora:metrics:2005,
author={Nikora, A.P. and Munson, J.C.},
booktitle={Software Metrics Symposium, 2003. Proceedings. Ninth International}, title={Developing fault predictors for evolving software systems},
year={2003},
month={sept.},
volume={},
number={},
pages={ 338 - 350},
keywords={ JPL; evolving software systems; flight software technology development effort; jet propulsion laboratory; software defect content estimation; software development; software fault prediction; software measurement framework; software metrics; software quality models; software standards; aerospace computing; program verification; software fault tolerance; software metrics; software prototyping; software quality; software standards;},
doi={10.1109/METRIC.2003.1232479},
ISSN={1530-1435 },}
@inproceedings{jiang:promise:2008,
author = {Jiang, Yue and Cuki, Bojan and Menzies, Tim and Bartlow, Nick},
title = {Comparing design and code metrics for software quality prediction},
booktitle = {Proceedings of the 4th international workshop on Predictor models in software engineering},
series = {PROMISE '08},
year = {2008},
isbn = {978-1-60558-036-4},
location = {Leipzig, Germany},
pages = {11--18},
numpages = {8},
url = {http://doi.acm.org/10.1145/1370788.1370793},
doi = {10.1145/1370788.1370793},
acmid = {1370793},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {code metrics, design metrics, fault-proneness prediction, machine learning},
}
@inproceedings{zimmermann:promise:2007,
author = {Zimmermann, Thomas and Premraj, Rahul and Zeller, Andreas},
title = {Predicting Defects for Eclipse},
booktitle = {Proceedings of the Third International Workshop on Predictor Models in Software Engineering},
series = {PROMISE '07},
year = {2007},
isbn = {0-7695-2954-2},
pages = {9--},
url = {http://dx.doi.org/10.1109/PROMISE.2007.10},
doi = {10.1109/PROMISE.2007.10},
acmid = {1269057},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@inproceedings{koru:promise:2005,
author = {Koru, A. G\"{u}nes and Liu, Hongfang},
title = {An investigation of the effect of module size on defect prediction using static measures},
booktitle = {Proceedings of the 2005 workshop on Predictor models in software engineering},
series = {PROMISE '05},
year = {2005},
isbn = {-159593-125-2},
location = {St. Louis, Missouri},
pages = {1--5},
numpages = {5},
url = {http://doi.acm.org/10.1145/1082983.1083172},
doi = {10.1145/1082983.1083172},
acmid = {1083172},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {defect prediction, prediction models, software metrics, software quality management, static measures},
}
@inproceedings{english:promise:2009,
author = {English, Michael and Exton, Chris and Rigon, Irene and Cleary, Brendan},
title = {Fault detection and prediction in an open-source software project},
booktitle = {Proceedings of the 5th International Conference on Predictor Models in Software Engineering},
series = {PROMISE '09},
year = {2009},
isbn = {978-1-60558-634-2},
location = {Vancouver, British Columbia, Canada},
pages = {17:1--17:11},
articleno = {17},
numpages = {11},
url = {http://doi.acm.org/10.1145/1540438.1540462},
doi = {10.1145/1540438.1540462},
acmid = {1540462},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {empirical study, fault prediction, metrics, open source, regression, software quality},
}
@inproceedings{bell:promise:2011,
author = {Bell, Robert M. and Ostrand, Thomas J. and Weyuker, Elaine J.},
title = {Does measuring code change improve fault prediction?},
booktitle = {Proceedings of the 7th International Conference on Predictive Models in Software Engineering},
series = {Promise 2011},
year = {2011},
isbn = {978-1-4503-0709-3},
location = {Banff, Alberta, Canada},
pages = {2:1--2:8},
articleno = {2},
numpages = {8},
url = {http://doi.acm.org/10.1145/2020390.2020392},
doi = {10.1145/2020390.2020392},
acmid = {2020392},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {code churn, empirical study, fault prediction, fault-percentile average, software faults},
}
@inproceedings{knab:msr:2006,
author = {Knab, Patrick and Pinzger, Martin and Bernstein, Abraham},
title = {Predicting defect densities in source code files with decision tree learners},
booktitle = {Proceedings of the 2006 international workshop on Mining software repositories},
series = {MSR '06},
year = {2006},
isbn = {1-59593-397-2},
location = {Shanghai, China},
pages = {119--125},
numpages = {7},
url = {http://doi.acm.org/10.1145/1137983.1138012},
doi = {10.1145/1137983.1138012},
acmid = {1138012},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {data mining, decision tree learner, defect prediction},
}
@inproceedings{shin:msr:2009,
author={Shin, Y. and Bell, R. and Ostrand, T. and Weyuker, E.},
booktitle={Mining Software Repositories, 2009. MSR '09. 6th IEEE International Working Conference on}, title={Does calling structure information improve the accuracy of fault prediction?},
year={2009},
month={may},
volume={},
number={},
pages={61 -70},
keywords={calling structure information;fault prediction accuracy;history information;industrial software system;noncalling structure code attribute;software fault tolerance;software houses;},
doi={10.1109/MSR.2009.5069481},
ISSN={},}
@article{dambros:wcre:2009,
author = {Marco D'Ambros and Michele Lanza and Romain Robbes},
title = {On the Relationship Between Change Coupling and Software Defects},
journal ={Reverse Engineering, Working Conference on},
volume = {0},
issn = {1095-1350},
year = {2009},
pages = {135-144},
doi = {http://doi.ieeecomputersociety.org/10.1109/WCRE.2009.19},
publisher = {IEEE Computer Society},
address = {Los Alamitos, CA, USA},
}
@inproceedings{zhang:icsm:2009,
author={Hongyu Zhang},
booktitle={Software Maintenance, 2009. ICSM 2009. IEEE International Conference on}, title={An investigation of the relationships between lines of code and defects},
year={2009},
month={sept.},
volume={},
number={},
pages={274 -283},
keywords={Eclipse dataset;lines of code;post-release defects;pre-release defects;software system quality;static code metrics;program diagnostics;software metrics;software quality;},
doi={10.1109/ICSM.2009.5306304},
ISSN={1063-6773},}
@inproceedings{abreu:iwpse:2009,
author = {Abreu, Roberto and Premraj, Rahul},
title = {{How Developer Communication Frequency Relates to Bug Introducing Changes}},
booktitle = {Proceedings of the joint international and annual ERCIM workshops on Principles of software evolution (IWPSE) and software evolution (Evol) workshops},
series = {IWPSE-Evol 2009},
year = {2009},
isbn = {978-1-60558-678-6},
location = {Amsterdam, The Netherlands},
pages = {153--158},
numpages = {6},
url = {http://doi.acm.org/10.1145/1595808.1595835},
doi = {10.1145/1595808.1595835},
acmid = {1595835},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {developer communication, mailing lists, social network analysis, software quality},
}
@INPROCEEDINGS{bassil:iwpc:2001,
author={Bassil, Sarita and Keller, Rudolf K.},
booktitle={Program Comprehension, 2001. IWPC 2001. Proceedings. 9th International Workshop on},
title={{Software Visualization Tools: Survey and Analysis}},
year={2001},
month={},
volume={},
number={},
pages={7 -17},
keywords={code analysis;cognitive issues;program comprehension;software maintenance;software visualization tools;survey;program visualisation;reverse engineering;software maintenance;software tools;},
doi={10.1109/WPC.2001.921708},
ISSN={},}
@INPROCEEDINGS{bird:issre:2009,
author={Bird, Christian and Nagappan, Nachiappan and Gall, Harald and Murphy, Brendan and Devanbu, Premkumar},
booktitle={Software Reliability Engineering, 2009. ISSRE '09. 20th International Symposium on}, title={{Putting It All Together: Using Socio-technical Networks to Predict Failures}},
year={2009},
month={nov.},
volume={},
number={},
pages={109 -119},
keywords={Eclipse development environment;dependency structure;development organization;failure prone components prediction;individual software components fault proneness;social factor;socio-technical network;software component network property;software quality;task assignment;human factors;social sciences;software development management;software fault tolerance;software quality;},
doi={10.1109/ISSRE.2009.17},
ISSN={1071-9458},}
@article {boehm:analse:2000,
author = {Boehm, Barry and Abts, Chris and Chulani, Sunita},
affiliation = {University of Southern California Los Angeles CA 90089â0781 USA Los Angeles CA 90089â0781 USA},
title = {{Software Development Cost Estimation Approaches: A Survey}},
journal = {Annals of Software Engineering},
publisher = {Springer Netherlands},
issn = {1022-7091},
keyword = {Computer Science},
pages = {177-205},
volume = {10},
issue = {1},
url = {http://dx.doi.org/10.1023/A:1018991717352},
note = {10.1023/A:1018991717352},
year = {2000}
}
@article{boehm:senotes:1986,
author = {Boehm, Barry},
title = {{A Spiral Model of Software Development and Enhancement}},
journal = {SIGSOFT Software Engineering Notes},
issue_date = {August 1986},
volume = {11},
number = {4},
month = aug,
year = {1986},
issn = {0163-5948},
pages = {14--24},
numpages = {11},
url = {http://doi.acm.org/10.1145/12944.12948},
doi = {10.1145/12944.12948},
acmid = {12948},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{cataldo:icse:2011,
author = {Cataldo, Marcelo and Herbsleb, James D.},
title = {Factors leading to integration failures in global feature-oriented development: an empirical analysis},
booktitle = {Proceedings of the 33rd International Conference on Software Engineering},
series = {ICSE '11},
year = {2011},
isbn = {978-1-4503-0445-0},
location = {Waikiki, Honolulu, HI, USA},
pages = {161--170},
numpages = {10},
url = {http://doi.acm.org/10.1145/1985793.1985816},
doi = {10.1145/1985793.1985816},
acmid = {1985816},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {cross-feature interaction, feature-oriented development, global software development},
}
@article{chidamber:tse:1994,
author = {Chidamber, S. R. and Kemerer, C. F.},
title = {A Metrics Suite for Object Oriented Design},
journal = {IEEE Trans. Softw. Eng.},
issue_date = {June 1994},
volume = {20},
number = {6},
month = jun,
year = {1994},
issn = {0098-5589},
pages = {476--493},
numpages = {18},
url = {http://dx.doi.org/10.1109/32.295895},
doi = {10.1109/32.295895},
acmid = {631131},
publisher = {IEEE Press},
address = {Piscataway, NJ, USA},
keywords = {automated data collection tool, measurement principles, metrics suite, object oriented design, object oriented programming, object-oriented methods, object-oriented programming, organization, process improvement, software development, software measures, software metrics},
}
@proceedings{cong:comp:constr,
editor = {Knoop, Jens},
title = {CC'11/ETAPS'11: Proceedings of the 20th International Conference on Compiler Construction: Part of the Joint European Conferences on Theory and Practice of Software},
year = {2011},
isbn = {978-3-642-19860-1},
issn = {0302-9743},
location = {Saarbr\&\#252;cken, Germany},
publisher = {Springer-Verlag},
address = {Berlin, Heidelberg},
}
@proceedings{conf:prog:lang,
title = {{PLDI '2011: Proceedings of the 32nd ACM SIGPLAN Conference on Programming Language Design and Implementation}},
editor={Hall, Mary},
year = {2011},
isbn = {978-1-4503-0663-8},
location = {San Jose, California, USA},
note = {548110},
publisher = {ACM},
address = {New York, NY, USA},
pages = {1},
}
@proceedings{conf:icssp,
title = {ICSSP '11: Proceedings of the 2011 International Conference on Software and Systems Process},
editor={Raffo, David},
year = {2011},
isbn = {978-1-4503-0730-7},
location = {Waikiki, Honolulu, HI, USA},
publisher = {ACM},
address = {New York, NY, USA},
}
@proceedings{conf:promise,
title = {Promise 2011: Proceedings of the 7th International Conference on Predictive Models in Software Engineering},
editor = {Menzies, Tim},
year = {2011},
isbn = {978-1-4503-0709-3},
location = {Banff, Alberta, Canada},
publisher = {ACM},
address = {New York, NY, USA},
}
@proceedings{conf:sigcse,
title = {SIGCSE 2011: Proceedings of the 42nd ACM Technical Symposium on Computer Science Education},
editor = {Cortina, Thomas and Walker, Ellen},
year = {2011},
isbn = {978-1-4503-0500-6},
location = {Dallas, TX, USA},
note = {457110},
publisher = {ACM},
address = {New York, NY, USA},
pages = {1}
}
@article{gopal:2002:comacm,
author = {Gopal, Anandasivam and Mukhopadhyay, Tridas and Krishnan, Mayuram S.},
title = {{The Role of Software Processes and Communication in Offshore Software Development}},
journal = {Communication of the ACM},
issue_date = {April 2002},
volume = {45},
number = {4},
month = apr,
year = {2002},
issn = {0001-0782},
pages = {193--200},
numpages = {8},
url = {http://doi.acm.org/10.1145/505248.506008},
doi = {10.1145/505248.506008},
acmid = {506008},
publisher = {ACM},
address = {New York, NY, USA},
}
@ARTICLE{henry:tse:1981,
author={Henry, S. and Kafura, D.},
journal={Software Engineering, IEEE Transactions on},
title={Software Structure Metrics Based on Information Flow},
year={1981},
month={sept.},
volume={SE-7},
number={5},
pages={ 510 - 518},
keywords={ Complexity; UNIX; design methodologies; information flow; software metrics;},
doi={10.1109/TSE.1981.231113},
ISSN={0098-5589},
}
@inproceedings{kim:icse:2007,
author = {Kim, Sunghun and Zimmermann, Thomas and Whitehead, James and Zeller, Andreas},
title = {Predicting Faults from Cached History},
booktitle = {Proceedings of the 29th International Conference on Software Engineering},
series = {ICSE 2007},
year = {2007},
isbn = {0-7695-2828-7},
pages = {489--498},
numpages = {10},
url = {http://dx.doi.org/10.1109/ICSE.2007.66},
doi = {http://dx.doi.org/10.1109/ICSE.2007.66},
acmid = {1248881},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@inproceedings{kwan:stc:2009,
added-at = {2009-08-15T16:13:36.000+0200},
address = {Vancouver, Canada},
author = {Kwan, Daniela Damian Irwin},
biburl = {http://www.bibsonomy.org/bibtex/260a3c47713d3e8c7c108aa49d3d4d202/gzp},
booktitle = {2nd International Workshop on Socio-Technical Congruence STC'09},
interhash = {8eebfb81c953bc167f15f3815c08aa03},
intrahash = {60a3c47713d3e8c7c108aa49d3d4d202},
keywords = {STC_2009},
month = {May 19},
publisher = {in conjunction with ICSE 2009},
timestamp = {2009-08-15T16:13:36.000+0200},
title = {{A Weighted Congruence Measure}},
year = {2009},
pages = {1-10}
}
@article{larman:ieeecomputer:2003,
author = {Larman, Craig and Basili, Victor R.},
title = {{Iterative and Incremental Development: A Brief History}},
journal = {Computer},
issue_date = {June 2003},
volume = {36},
number = {6},
month = jun,
year = {2003},
issn = {0018-9162},
pages = {47--56},
numpages = {10},
url = {http://dx.doi.org/10.1109/MC.2003.1204375},
doi = {10.1109/MC.2003.1204375},
acmid = {972226},
publisher = {IEEE Computer Society Press},
address = {Los Alamitos, CA, USA},
}
@inproceedings{latoza:icse:2006,
author = {LaToza, Thomas D. and Venolia, Gina and DeLine, Robert},
title = {{Maintaining Mental Models: A Study of Developer Work Habits}},
booktitle = {Proceedings of the 28th International Conference on Software Engineering},
series = {ICSE 2006},
year = {2006},
isbn = {1-59593-375-1},
location = {Shanghai, China},
pages = {492--501},
numpages = {10},
url = {http://doi.acm.org/10.1145/1134285.1134355},
doi = {10.1145/1134285.1134355},
acmid = {1134355},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {agile software development, code duplication, code ownership, communication, debugging, interruptions},
}
@article{letherbridge:ese2005,
author = {Lethbridge, Timothy C. and Sim, Susan Elliott and Singer, Janice},
affiliation = {School of Information Technology and Engineering University of Ottawa Ottawa Ontario K1N 6N5 Canada},
title = {{Studying Software Engineers: Data Collection Techniques for Software Field Studies}},
journal = {Empirical Software Engineering},
publisher = {Springer Netherlands},
issn = {1382-3256},
keyword = {Computer Science},
pages = {311-341},
volume = {10},
issue = {3},
year = {2005}
}
@inproceedings{mccabe:ieee:1976,
author = {McCabe, Thomas J.},
title = {A complexity measure},
booktitle = {Proceedings of the 2nd international conference on Software engineering},
series = {ICSE '76},
year = {1976},
location = {San Francisco, California, United States},
pages = {407--},
url = {http://dl.acm.org/citation.cfm?id=800253.807712},
acmid = {807712},
publisher = {IEEE Computer Society Press},
address = {Los Alamitos, CA, USA},
keywords = {Basis, Complexity measure, Control flow, Decomposition, Graph theory, Independence, Linear, Modularization, Programming, Reduction, Software, Testing},
}
@ARTICLE{mens:tse:2004,
author={Mens, Tom and Tourwe, Tom},
journal={IEEE Transactions on Software Engineering},
title={{A Survey of Software Refactoring}},
year={2004},
month={February},
volume={30},
number={2},
pages={126 - 139},
keywords={ coding technique; coding tools; construction tool; programming environment; reverse engineering; software refactoring; bibliographies; object-oriented programming; programming environments; reverse engineering; software maintenance; software quality; software reusability;},
doi={10.1109/TSE.2004.1265817},
ISSN={0098-5589},}
@inbook{strauss:sage:1994,
title={Grounded Theory Methodology: An Overview Handbook of Qualitative Research},
url={http://www.mendeley.com/research/grounded-theory-methodology-overview-handbook-qualitative-research/},
booktitle={Handbook of qualitative research},
publisher={Sage Publications},
author={Strauss, Anselm and Corbin, Juliet},
year={1994},
pages={273--285}}
@article{vonmayrhauser:ieeecomputer:1995,
author = {von Mayrhauser, Anneliese and Vans, A. Marie},
title = {{Program Comprehension During Software Maintenance and Evolution}},
journal = {Computer},
issue_date = {August 1995},
volume = {28},
number = {8},
month = aug,
year = {1995},
issn = {0018-9162},
pages = {44--55},
numpages = {12},
url = {http://dx.doi.org/10.1109/2.402076},
doi = {10.1109/2.402076},
acmid = {620287},
publisher = {IEEE Computer Society Press},
address = {Los Alamitos, CA, USA},
}
%%
%% unsorted
%%
@inproceedings{molkken:isese:2003,
author = {Molkken, Kjetil and Jrgensen, Magne},
title = {{A Review of Surveys on Software Effort Estimation}},
booktitle = {Proceedings of the 2003 International Symposium on Empirical Software Engineering},
series = {ISESE 2003},
year = {2003},
isbn = {0-7695-2002-2},
pages = {223--230},
url = {http://dl.acm.org/citation.cfm?id=942801.943636},
acmid = {943636},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
keywords = {Effort estimation, surveys, software projects},
}
@inproceedings{blincoe:cscw:2012,
author = {Blincoe, Kelly and Valetto, Giuseppe and Goggins, Sean},
title = {{Proximity: A Measure to Quantify the Need for Developers' Coordination}},
booktitle = {Proceedings of the ACM 2012 conference on Computer Supported Cooperative Work},
series = {CSCW 2012},
year = {2012},
isbn = {978-1-4503-1086-4},
location = {Seattle, Washington, USA},
pages = {1351--1360},
numpages = {10},
url = {http://doi.acm.org/10.1145/2145204.2145406},
doi = {10.1145/2145204.2145406},
acmid = {2145406},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {awareness, coordination requirements, management, proximity, socio-technical, task context, tools},
}
@inproceedings{schreck:iwpse:2007,
author = {Schreck, Daniel and Dallmeier, Valentin and Zimmermann, Thomas},
title = {{How Documentation Evolves over Time}},
booktitle = {IWPSE '07: Proceedings of Ninth International Workshop on Principles of Software Evolution},
year = {2007},
isbn = {978-1-59593-722-3},
pages = {4--10},
location = {Dubrovnik, Croatia},
doi = {http://doi.acm.org/10.1145/1294948.1294952},
publisher = {ACM},
address = {New York, NY, USA},
}
@incollection{nakakoji2010:rdc,
Author = {K. Nakakoji and Y. Ye and Y. Yamamoto},
Booktitle = {Collaborative Software Enginnering},
Chapter = {11},
Date-Added = {2009-09-22 14:41:32 -0700},
Date-Modified = {2009-09-22 14:41:32 -0700},
Editor = {A. Frinkelstein and J. Grundy and A. van der Hoek and I. Mistrik and James Whitehead},
Pages = {219-236},
Publisher = {Springer-Verlag},
Title = {{Supporting Expertise Communication in Developer-Centered Collaborative Software Development Environments}},
Year = {2010}}
@inproceedings{desouza:fse:2004,
author = {de Souza, Cleidson R. B. and Redmiles, David and Cheng, Li-Te and Millen, David and Patterson, John},
title = {How a good software practice thwarts collaboration: the multiple roles of APIs in software development},
booktitle = {Proceedings of the 12th ACM SIGSOFT twelfth international symposium on Foundations of software engineering},
series = {SIGSOFT '04/FSE-12},
year = {2004},
isbn = {1-58113-855-5},
location = {Newport Beach, CA, USA},
pages = {221--230},
numpages = {10},
url = {http://doi.acm.org/10.1145/1029894.1029925},
doi = {http://doi.acm.org/10.1145/1029894.1029925},
acmid = {1029925},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {application programming interfaces, empirical software engineering, interfaces, qualitative studies},
}
@article{holck2004,
Author = {Jesper Holck and Niels J{\o}rgensen},
Date-Added = {2009-10-07 13:48:08 -0700},
Date-Modified = {2009-10-09 10:16:26 -0700},
Journal = {Australasian Journal of Information Systems},
Pages = {40--53},
Title = {{Continuous Integration and Quality Assurance: A Case Study of Two Open Source Projects}},
Year = {2003/2004}}
@article{curtis:acm:1988,
author = {Curtis, Bill and Krasner, Herb and Iscoe, Neil},
title = {{A Field Study of the Software Design Process for Large Systems}},
journal = {Communincation of the ACM},
volume = {31},
number = {11},
year = {1988},
issn = {0001-0782},
pages = {1268--1287},
doi = {http://doi.acm.org/10.1145/50087.50089},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{hassan:ase:2006,
author = {Hassan, Ahmed E. and Zhang, Ken},
title = {{Using Decision Trees to Predict the Certification Result of a Build}},
booktitle = {Proceedings of the 21st International Conference on Automated Software Engineering},
year = {2006},
isbn = {0-7695-2579-2},
pages = {189--198},
doi = {http://dx.doi.org/10.1109/ASE.2006.72},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@book{duvall:book:2007,
author = {Duvall, Paul and Matyas, Steve and Glover, Andrew},
title = {Continuous integration: improving software quality and reducing risk},
year = {2007},
isbn = {9780321336385},
edition = {First},
publisher = {Addison-Wesley Professional},
}
@book{maraia:book:2005,
author = {Maraia, Vincent},
title = {The Build Master: Microsoft's Software Configuration Management Best Practices},
year = {2005},
isbn = {0321332059},
publisher = {Addison-Wesley Professional},
}
@article{german:ist:2009,
author = {German, Daniel M. and Hassan, Ahmed E. and Robles, Gregorio},
title = {{Change Impact Graphs: Determining the Impact of Prior Codechanges}},
journal = {Information and Software Technology},
volume = {51},
number = {10},
year = {2009},
issn = {0950-5849},
pages = {1394--1408},
doi = {http://dx.doi.org/10.1016/j.infsof.2009.04.018},
publisher = {Butterworth-Heinemann},
address = {Newton, MA, USA},
}
@inproceedings{nagappan:icse:2006,
author = {Nagappan, Nachiappan and Ball, Thomas and Zeller, Andreas},
title = {{Mining Metrics to Predict Component Failures}},
booktitle = {Proceedings of the 28th International Conference on Software engineering},
year = {2006},
isbn = {1-59593-375-1},
pages = {452--461},
location = {Shanghai, China},
doi = {http://doi.acm.org/10.1145/1134285.1134349},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{grinter:group:1999,
author = {Grinter, Rebecca E. and Herbsleb, James D. and Perry, Dewayne E.},
title = {{The Geography of Coordination: Dealing with Distance in R\&D Work}},
booktitle = {Proceedings of the International Conference on Supporting Group Work},
year = {1999},
isbn = {1-58113-065-1},
pages = {306--315},
location = {Phoenix, Arizona, United States},
doi = {http://doi.acm.org/10.1145/320297.320333},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{nagappan:icse:2005,
author = {Nagappan, Nachiappan and Ball, Thomas},
title = {{Use of Relative Code Churn Measures to Predict System Defect Density}},
booktitle = {Proceedings of the 27th International Conference on Software Engineering},
year = {2005},
isbn = {1-59593-963-2},
pages = {284--292},
location = {St. Louis, MO, USA},
doi = {http://doi.acm.org/10.1145/1062455.1062514},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{chung:cpr:07,
author = {Chung, Kon Shing Kenneth and Hossain, Liaquat and Davis, Joseph},
title = {{Individual Performance in Knowledge Intensive Work through Social Networks}},
booktitle = {Proceedings of the 45th Conference on Computer Personnel Research},
year = {2007},
isbn = {978-1-59593-641-7},
pages = {159--167},
location = {St. Louis, Missouri, USA},
doi = {http://doi.acm.org/10.1145/1235000.1235036},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{hinds:hicss:2008,
author = {Hinds, David and Lee, Ronald M.},
title = {{Social Network Structure as a Critical Success Condition for Virtual Communities}},
booktitle = {Proceedings of the 41st Annual Hawaii International Conference on System Sciences},
year = {2008},
isbn = {0-7695-3075-8},
pages = {323},
doi = {http://dx.doi.org/10.1109/HICSS.2008.404},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@inproceedings{xu:hicss:2005,
author = {Xu, Jin and Gao, Yongqin and Christley, Scott and Madey, Gregory},
title = {{A Topological Analysis of the Open Souce Software Development Community}},
booktitle = {Proceedings of the Proceedings of the 38th Annual Hawaii International Conference on System Sciences},
year = {2005},
isbn = {0-7695-2268-8-7},
pages = {198.1},
doi = {http://dx.doi.org/10.1109/HICSS.2005.57},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@inproceedings{zimmermann:icse:2008,
author = {Thomas Zimmermann and Nagappan, Nachiappan},
title = {{Predicting Defects Using Network Analysis on Dependency Graphs}},
booktitle = {Proceedings of the 30th International Conference on Software Engineering},
year = {2008},